-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.36 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "ueberdb2",
"description": "Transform every database into a object key value store",
"url": "https://github.com/ether/ueberDB",
"type": "commonjs",
"types": "./dist/index.d.ts",
"keywords": [
"database",
"keyvalue"
],
"author": {
"name": "The Etherpad Foundation"
},
"contributors": [
{
"name": "John McLear"
},
{
"name": "spcsser"
},
{
"name": "Peter Martischka"
}
],
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/async": "^3.2.25",
"@types/mssql": "^9.1.8",
"@types/node": "^22.18.1",
"@types/pg": "^8.15.5",
"@types/rethinkdb": "^2.3.21",
"@types/wtfnode": "^0.7.3",
"async": "^3.2.6",
"cassandra-driver": "^4.8.0",
"cli-table3": "^0.6.5",
"dirty-ts": "^1.1.8",
"@elastic/elasticsearch": "^9.3.4",
"eslint": "^9.35.0",
"eslint-config-etherpad": "^4.0.4",
"eslint-plugin-import": "^2.32.0",
"mongodb": "^6.19.0",
"mssql": "^12.2.1",
"mysql2": "^3.20.0",
"nano": "^10.1.4",
"pg": "^8.20.0",
"randexp-ts": "^1.0.5",
"redis": "^5.11.0",
"rethinkdb": "^2.4.2",
"rollup": "^4.59.0",
"rollup-plugin-typescript2": "^0.37.0",
"rusty-store-kv": "^1.3.1",
"semver": "^7.7.4",
"simple-git": "^3.32.3",
"surrealdb": "^2.0.3",
"testcontainers": "^11.13.0",
"typescript": "^5.9.2",
"vitest": "^4.1.3",
"wtfnode": "^0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ether/ueberDB.git"
},
"main": "./dist/index.js",
"version": "5.0.33",
"bugs": {
"url": "https://github.com/ether/ueberDB/issues"
},
"files": [
"dist/databases",
"dist/index.js",
"dist/*.d.ts",
"dist/lib"
],
"homepage": "https://github.com/ether/ueberDB",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"build": "pnpm exec rollup -c rollup.config.cjs.js",
"test": "vitest --test-timeout=120000",
"ts-check": "tsc --noEmit",
"ts-check:watch": "tsc --noEmit --watch"
},
"_npmUser": {
"name": "johnyma22",
"email": "john@mclear.co.uk"
},
"maintainers": [
{
"name": "John McLear",
"email": "john@mclear.co.uk"
}
],
"engines": {
"node": ">=16.20.1"
}
}