-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.01 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.01 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
{
"name": "enfys",
"author": "Ryan Williams <git@ryan.nz>",
"version": "1.0.0",
"description": "Simple WebGPU rendering engine",
"scripts": {
"start": "serve -c serve.config.json -p 3333",
"watch": "rollup -c rollup.config.mjs --watch",
"build": "rollup -c rollup.config.mjs",
"test": "jest src",
"lint": "eslint -c eslint.config.mjs src",
"docs": "typedoc --plugin typedoc-plugin-missing-exports"
},
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.2.0",
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@webgpu/types": "^0.1.40",
"eslint": "^8.57.0",
"globals": "^15.2.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-extended": "^4.0.2",
"rollup": "^4.17.2",
"serve": "^14.2.3",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typedoc": "^0.25.13",
"typedoc-plugin-missing-exports": "^2.2.0",
"typescript-eslint": "^7.8.0"
}
}