-
Notifications
You must be signed in to change notification settings - Fork 94
/
package.json
100 lines (100 loc) · 2.38 KB
/
package.json
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": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/async": "^3.2.24",
"@types/mssql": "^9.1.5",
"@types/node": "^22.7.6",
"@types/pg": "^8.11.10",
"@types/rethinkdb": "^2.3.21",
"@types/wtfnode": "^0.7.3",
"async": "^3.2.6",
"cassandra-driver": "^4.7.2",
"cli-table3": "^0.6.5",
"dirty-ts": "^1.1.8",
"elasticsearch8": "npm:@elastic/elasticsearch@^8.8.1",
"eslint": "^8.57.1",
"eslint-config-etherpad": "^4.0.4",
"eslint-plugin-import": "^2.31.0",
"mongodb": "^6.9.0",
"mssql": "^11.0.1",
"mysql2": "^3.11.3",
"nano": "^10.1.4",
"pg": "^8.13.0",
"randexp-ts": "^1.0.5",
"redis": "^4.7.0",
"rethinkdb": "^2.4.2",
"rollup": "^4.24.0",
"rollup-plugin-typescript2": "^0.36.0",
"rusty-store-kv": "^1.3.1",
"semver": "^7.6.3",
"simple-git": "^3.27.0",
"surrealdb.js": "^1.0.0",
"testcontainers": "^10.13.1",
"typescript": "^5.6.3",
"vitest": "^2.1.2",
"wtfnode": "^0.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/ether/ueberDB.git"
},
"main": "./dist/index.js",
"version": "5.0.8",
"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": "[email protected]"
},
"maintainers": [
{
"name": "John McLear",
"email": "[email protected]"
}
],
"engines": {
"node": ">=16.20.1"
}
}