-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.88 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.88 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
{
"name": "@csmodding/urbandevkit-workspace",
"private": true,
"type": "module",
"packageManager": "bun@1.2.16",
"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.9.4",
"@types/bun": "latest",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"chalk": "^5.4.1",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"npm-run-all": "^4.1.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.89.2",
"sass-loader": "^16.0.5",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1"
},
"trustedDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"esbuild",
"lefthook"
]
}