-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.58 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 2.58 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
101
102
103
104
105
106
107
108
109
110
{
"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"
}
],
"dependencies": {
"@elastic/elasticsearch": "^9.3.4",
"async": "^3.2.6",
"cassandra-driver": "^4.8.0",
"dirty-ts": "^1.1.8",
"mongodb": "^7.1.1",
"mssql": "^12.3.1",
"mysql2": "^3.22.3",
"nano": "^11.0.5",
"pg": "^8.20.0",
"redis": "^5.12.1",
"rethinkdb": "^2.4.2",
"rusty-store-kv": "^1.3.1",
"simple-git": "^3.36.0",
"surrealdb": "^2.0.3"
},
"devDependencies": {
"@elastic/elasticsearch": "^9.3.4",
"@types/async": "^3.2.25",
"@types/mssql": "^12.3.0",
"@types/node": "^25.6.0",
"@types/pg": "^8.20.0",
"@types/rethinkdb": "^2.3.21",
"@types/wtfnode": "^0.10.0",
"cassandra-driver": "^4.8.0",
"cli-table3": "^0.6.5",
"mongodb": "^7.1.1",
"oxfmt": "^0.45.0",
"oxlint": "^1.60.0",
"mssql": "^12.3.1",
"mysql2": "^3.22.3",
"nano": "^11.0.5",
"pg": "^8.20.0",
"randexp-ts": "^1.0.5",
"redis": "^5.12.1",
"rethinkdb": "^2.4.2",
"rolldown": "^1.0.0-rc.16",
"semver": "^7.7.4",
"surrealdb": "^2.0.3",
"testcontainers": "^11.14.0",
"typescript": "^6.0.3",
"vitest": "^4.1.4",
"wtfnode": "^0.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ether/ueberDB.git"
},
"main": "./dist/index.js",
"version": "5.0.48",
"bugs": {
"url": "https://github.com/ether/ueberDB/issues"
},
"files": [
"dist/*.js",
"dist/*.d.ts",
"dist/databases",
"dist/lib"
],
"homepage": "https://github.com/ether/ueberDB",
"scripts": {
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"build": "pnpm run build:js && pnpm run build:types",
"build:js": "pnpm exec rolldown -c rolldown.config.mjs",
"build:types": "pnpm exec tsc --emitDeclarationOnly",
"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": ">=18.0.0"
}
}