-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 923 Bytes
/
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
{
"name": "code",
"version": "1.0.0",
"description": "",
"main": "src/main.js",
"type": "module",
"scripts": {
"dev": "vite --open",
"install-missing-dependencies": "yarn install",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"browser": {
"fs": false,
"os": false,
"path": false,
"util": false
},
"keywords": [],
"author": "Roman Koller",
"license": "ISC",
"dependencies": {
"gl-matrix": "^3.4.3"
},
"devDependencies": {
"@types/gl-matrix": "^3.2.0",
"@types/node": "^22.7.4",
"@typescript-eslint/eslint-plugin": "^8.7.0",
"@typescript-eslint/parser": "^8.7.0",
"@webgpu/types": "^0.1.46",
"eslint": "^9.11.1",
"ts-shader-loader": "^2.0.2",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-string": "^1.2.3"
},
"packageManager": "[email protected]"
}