forked from xiangechen/chili3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.5 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.5 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
{
"name": "chili3d",
"version": "0.6.1",
"description": "",
"documentVersion": "0.6",
"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",
"format": "npx prettier --write . && npx clang-format --style=Webkit --sort-includes -i ./cpp/src/**",
"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"
],
"*.{c,h,cxx,hxx,cpp,hpp}": [
"clang-format --style=Webkit --sort-includes -i"
]
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@rspack/cli": "1.3.5",
"@rspack/core": "1.3.5",
"@types/jest": "29.5.14",
"clang-format": "^1.8.0",
"fork-ts-checker-webpack-plugin": "9.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "15.5.1",
"prettier": "3.5.3",
"simple-git-hooks": "2.12.1",
"ts-jest": "29.3.2",
"typescript": "5.8.3",
"typescript-plugin-css-modules": "^5.1.0"
}
}