-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.84 KB
/
package.json
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
{
"name": "@csmodding/urbandevkit-workspace",
"private": true,
"type": "module",
"packageManager": "bun@1.1.18",
"workspaces": ["JSDevKit", "TestModOne/UI", "TestModTwo/UI"],
"scripts": {
"pm:update": "bunx npm-check-updates -i && bun update",
"check:tsc:jsdevkit": "bun --bun tsc --p JSDevKit --noEmit",
"check:tsc:testmodone": "bun --bun tsc -p TestModOne/UI --noEmit",
"check:tsc:testmodtwo": "bun --bun tsc -p TestModTwo/UI --noEmit",
"check:tsc": "bun --bun run-p 'check:tsc:*'",
"check:biome": "biome check --fix",
"check": "bun --bun run-s 'check:*'",
"dev:jsdevkit": "bun --bun tsc -b JSDevKit --verbose --watch --preserveWatchOutput",
"dev:testmodone": "webpack --config TestModOne/UI/webpack.config.js --watch",
"dev:testmodtwo": "webpack --config TestModTwo/UI/webpack.config.js --watch",
"dev": "run-p 'dev:*'",
"build:jsdevkit": "bun --bun tsc -b JSDevKit --verbose",
"build:jsdevkit:pack": "npm pack -w JSDevKit --pack-destination JSDevKit",
"build:testmodone": "webpack --config TestModOne/UI/webpack.config.js",
"build:testmodtwo": "webpack --config TestModTwo/UI/webpack.config.js",
"build": "run-s 'build:*'",
"publish:npm": "npm publish -w JSDevKit",
"publish:nuget": "dotnet nuget push"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/bun": "latest",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"chalk": "^5.3.0",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.77.6",
"sass-loader": "^14.2.1",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"trustedDependencies": ["@biomejs/biome", "esbuild", "lefthook"]
}