-
-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 2 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
53
54
55
56
57
58
{
"name": "redgpu",
"version": "4.1.0-Alpha",
"description": "RedGPU",
"repository": {
"type": "git",
"url": "https://github.com/redcamel/RedGPU"
},
"homepage": "https://redcamel.github.io/RedGPU/",
"bugs": {
"url": "https://github.com/redcamel/RedGPU/issues"
},
"scripts": {
"build": "rollup -c",
"rollup watch": "rollup -wc",
"gen:api-ko": "node buildScripts/syncShaderDoc.js && cross-env DOC_LANG=ko npx typedoc --options typedoc.config.js && node buildScripts/github/filterLanguageFiles.js ko",
"gen:api-en": "node buildScripts/syncShaderDoc.js && cross-env DOC_LANG=en npx typedoc --options typedoc.config.js && node buildScripts/github/filterLanguageFiles.js en",
"gen:api-all": "npm run gen:api-ko && npm run gen:api-en",
"vitePress:dev": "npm run gen:api-all && vitepress dev manual",
"vitePress:build": "cross-env NODE_ENV=production npm run gen:api-all && vitepress build manual && node buildScripts/github/deploy-manual.js"
},
"author": "RedCamel",
"license": "MIT",
"devDependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.4",
"@rollup/pluginutils": "^5.2.0",
"@webgpu/types": "^0.1.70",
"concurrently": "^10.0.3",
"cross-env": "^10.1.0",
"gl-matrix": "^3.4.3",
"mermaid": "^11.12.2",
"postcss": "^8.5.14",
"rollup": "^4.60.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-string": "^3.0.0",
"sharp": "^0.34.5",
"tslib": "^2.8.1",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-no-inherit": "^1.6.1",
"typescript": "^5.8.3",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitepress-sidebar": "^1.33.1"
},
"dependencies": {
"wgsl_reflect": "^1.2.3"
},
"overrides": {
"lodash-es": "^4.17.21",
"esbuild": "^0.25.0"
}
}