forked from voxelize/voxelize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.6 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": "voxelize",
"license": "MIT",
"private": true,
"scripts": {
"watch": "pnpm -r --parallel --filter \"@voxelize/*\" watch",
"demo": "npm-run-all --parallel \"demo:ts\" \"demo:rs\"",
"build": "cd packages && pnpm -r --filter \"@voxelize/*\" --filter \"!@voxelize/core\" build && cd core && pnpm build",
"demo:ts": "cd examples/client && yarn demo",
"demo:rs": "cross-env RUST_BACKTRACE=1 cargo watch -w examples/server -w server -x \"run --release --example demo\"",
"test-dev": "vitest",
"test": "vitest --run",
"lint": "eslint --fix --ext js,ts,tsx .",
"docs": "cd docs && yarn run start",
"proto": "cd packages/protocol && yarn run proto",
"preinstall": "npx only-allow pnpm"
},
"devDependencies": {
"@swc/core": "^1.3.41",
"@types/domurl": "^0.0.7",
"@types/events": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"docusaurus-plugin-typedoc": "^0.17.5",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lerna": "^6.1.0",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"peer": "^0.6.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"typedoc": "^0.25.3",
"typescript": "^5.3.3",
"vite": "^5.2.11",
"vite-plugin-externalize-deps": "^0.8.0",
"vite-plugin-glsl": "^1.3.0",
"vitest": "^1.6.0"
}
}