forked from microsoft/webnn-developer-preview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 983 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
41
42
43
44
45
{
"name": "webnn-developer-preview",
"version": "1.0.0",
"description": "Run ONNX models in the browser with WebNN",
"scripts": {
"fetch-models": "node fetch_models.js",
"prepare": "husky install",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"dev": "http-server"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"eslint --cache --fix",
"git add"
],
"*.{html,css}": [
"eslint",
"prettier --write",
"git add"
]
},
"type": "module",
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.11.0",
"http-server": "^14.1.1",
"https-proxy-agent": "^7.0.5",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"node-fetch": "^3.3.2",
"prettier": "^3.3.3",
"progress": "^2.0.3"
}
}