-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.47 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.47 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
{
"name": "@zhin.js/database",
"version": "1.0.55",
"description": "Universal database abstraction layer for Zhin.js - supports SQLite, MySQL, PostgreSQL, MongoDB, Redis",
"type": "module",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js",
"development": "./src/index.ts"
}
},
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib"
},
"engines": {
"node": ">=22.5.0"
},
"peerDependencies": {
"mongodb": "^3.1.13",
"mysql2": "^3.9.8",
"pg": "^7.1.2",
"redis": "latest",
"zhin.js": "workspace:*"
},
"peerDependenciesMeta": {
"mysql2": {
"optional": true
},
"pg": {
"optional": true
},
"mongodb": {
"optional": true
},
"redis": {
"optional": true
}
},
"devDependencies": {
"@types/pg": "latest",
"mongodb": "latest",
"mysql2": "latest",
"pg": "latest",
"redis": "latest",
"typescript": "^6.0.0",
"zhin.js": "workspace:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zhinjs/zhin.git",
"directory": "basic/database"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"keywords": [
"zhin",
"bot",
"database",
"orm",
"sqlite",
"mysql",
"postgresql",
"mongodb",
"redis"
]
}