-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 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": "@scum-forge/sctl",
"description": "SCUM CLI/API tools to help you manage a dedicated server",
"version": "1.1.0-dev",
"private": true,
"type": "module",
"homepage": "https://github.com/scum-forge/sctl#readme",
"repository": "https://github.com/scum-forge/sctl.git",
"bugs": "https://github.com/scum-forge/sctl/issues",
"license": "MIT",
"scripts": {
"lint": "eslint src/ --ignore-pattern 'src/generated/**' eslint.config.mjs",
"gen-types": "bun scripts/gen-types.ts",
"prepare": "bun gen-types",
"build": "tsc -p tsconfig.build.json",
"start": "bash scripts/start.sh",
"start:bun": "bun src/main.ts",
"start:node": "node src/main.ts",
"start:tsx": "tsx src/main.ts"
},
"devDependencies": {
"@snowyyd/eslint-config": "^2.2.2",
"@types/bun": "^1.2.18",
"@types/node": "^24.0.13",
"eslint": "^9.31.0",
"prisma": "^6.11.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.36.0",
"yaml": "^2.8.0"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@prisma/client": "^6.11.1",
"commander": "^14.0.0",
"fast-xml-parser": "^5.2.5",
"i18next": "^25.3.2",
"i18next-fs-backend": "^2.6.0",
"neverthrow": "^8.2.0",
"winston": "^3.17.0"
},
"trustedDependencies": [
"@prisma/client",
"@prisma/engines",
"esbuild",
"prisma",
"unrs-resolver"
]
}