-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "ml-browser-gpu",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier . --cache",
"format:fix": "yarn format --write",
"format:check": "yarn format --check",
"lint": "eslint . --cache --max-warnings 0",
"lint:fix": "yarn lint --fix",
"lint:check": "yarn lint",
"type:check": "tsc --noEmit",
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"@webgpu/types": "^0.1.34",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "^3.0.1",
"typescript": "^5.0.2",
"vite": "^4.4.8"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix --max-warnings 0",
"*.{js,ts,css,htm,html,md}": "prettier --cache --write"
},
"dependencies": {
"twgl.js": "^5.4.1"
}
}