-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "chili3d",
"version": "0.4-beta",
"description": "",
"author": "仙阁",
"scripts": {
"dev": "npx rspack dev",
"build": "npx rspack build",
"build:wasm": "cd cpp && cmake --preset release && cmake --build --preset release",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"testc": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"prettier": "npx prettier --write .",
"release": "node scripts/release.mjs",
"setup:wasm": "node scripts/setup_wasm_deps.mjs"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,js,css,json,md}": [
"prettier --write"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rspack/cli": "1.0.5",
"@rspack/core": "1.0.5",
"@types/jest": "29.5.13",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"simple-git-hooks": "^2.11.1",
"ts-jest": "29.2.5",
"typescript": "5.6.2",
"typescript-plugin-css-modules": "^5.1.0"
}
}