forked from mil-tokyo/webdnn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.25 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "webdnn",
"version": "1.2.5",
"description": "Deep Neural Network Execution Framework for Web Browsers",
"main": "dist/webdnn.js",
"types": "dist/webdnn.d.ts",
"directories": {
"doc": "docs",
"example": "example",
"test": "test"
},
"scripts": {
"build": "echo '\"npm run\" is no longer used in webdnn. Please use \"/scripts/build.sh\" instead.'; exit 1",
"build-doc": "echo '\"npm run\" is no longer used in webdnn. Please use \"/scripts/build-doc.sh\" instead.'; exit 1",
"build-doc-py": "echo '\"npm run\" is no longer used in webdnn. Please use \"/scripts/build-doc-py.sh\" instead.'; exit 1",
"build-doc-ts": "echo '\"npm run\" is no longer used in webdnn. Please use \"/scripts/build-doc-ts.sh\" instead.'; exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mil-tokyo/webdnn.git"
},
"author": {
"name": "Yuichiro Kikura",
"email": "[email protected]",
"url": "https://github.com/Kiikurage"
},
"contributors": [
{
"name": "Masatoshi Hidaka",
"email": "[email protected]",
"url": "https://milhidaka.github.io/"
},
{
"name": "Yuichiro Kikura",
"email": "[email protected]",
"url": "https://github.com/Kiikurage"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mil-tokyo/webdnn/issues"
},
"homepage": "https://mil-tokyo.github.io/webdnn/",
"resolutions": {
"webpack-sources": "1.0.1"
},
"dependencies": {
"@types/pako": "^1.0.0",
"localforage": "^1.7.1",
"pako": "^1.0.6"
},
"devDependencies": {
"babel-minify-webpack-plugin": "^0.2.0",
"dts-generator": "^2.1.0",
"handlebars": "^4.0.11",
"typedoc": "^0.8.0",
"typedoc-default-themes": "^0.5.0",
"typedoc-plugin-webdnn": "file:docs/template/typedoc/plugin",
"typescript": "^2.8.3",
"webpack": "^3.12.0",
"webpack-sources": "^1.0.1"
},
"keywords": [
"deep-neural-networks",
"accelerate",
"optimization",
"javascript",
"webgpu"
]
}