-
-
Notifications
You must be signed in to change notification settings - Fork 419
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.35 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.35 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
{
"name": "5e-database",
"version": "4.6.3",
"description": "Database for 5e-srd-api",
"private": true,
"engines": {
"node": "22.x"
},
"scripts": {
"lint": "eslint . --config eslint.config.mjs",
"test": "vitest run",
"coverage": "vitest run --coverage",
"build:ts": "tsc --project scripts",
"db:refresh": "npm run build:ts && node scripts/built/dbRefresh.js",
"db:update": "npm run build:ts && node scripts/built/dbUpdate.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5e-bits/5e-database.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/5e-bits/5e-database/issues"
},
"homepage": "https://github.com/5e-bits/5e-database#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint/json": "^1.2.0",
"@types/deep-diff": "^1.0.5",
"@types/mongodb": "^4.0.7",
"@types/node": "^25.6.0",
"@typescript-eslint/parser": "^8.58.1",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/eslint-plugin": "^1.6.15",
"deep-diff": "^1.0.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"glob": "^13.0.6",
"globals": "^17.4.0",
"jsdom": "^29.0.2",
"mongodb": "^7.1.1",
"redis": "^5.11.0",
"typescript": "^6.0.2",
"vitest": "^4.1.4",
"zod": "^4.3.6"
}
}