-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.29 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.29 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
{
"name": "nitrocraft",
"version": "1.2.6",
"private": false,
"type": "module",
"scripts": {
"dev": "nitro dev",
"build": "nitro build",
"preview": "nitro preview",
"start": "node .output/server/index.mjs",
"lint": "oxlint . --ignore-path .gitignore --deny-warnings",
"lint:fix": "oxlint . --ignore-path .gitignore --fix",
"test": "tsx --test --test-concurrency=1 test/unit/config-utils.test.ts test/unit/routes-and-rate-limit.test.ts",
"loadtest": "tsx test/loadtest.ts",
"audit:security": "pnpm audit --audit-level=high --prod"
},
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"canvas": "^3.2.1",
"crc": "^4.3.2",
"dotenv": "^17.3.1",
"minecraft-toolkit": "^1.0.0",
"nitropack": "^2.13.1",
"pngjs": "^7.0.0",
"redis": "^5.11.0"
},
"devDependencies": {
"@types/node": "^25.3.5",
"autocannon": "^8.0.0",
"oxlint": "^1.51.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.22.0",
"pnpm": {
"overrides": {
"minimatch": "^10.2.1",
"diff": "^8.0.2",
"serialize-javascript": "^7.0.4"
},
"onlyBuiltDependencies": [
"canvas",
"esbuild",
"@parcel/watcher"
]
},
"volta": {
"node": "24.0.0",
"pnpm": "10.22.0"
}
}