-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "webgpu-torch",
"version": "0.4.0",
"description": "Tensor computation and autograd with WebGPU acceleration",
"browser": "index.js",
"scripts": {
"build": "rm -rf dist/* && rm -rf web/dist && ts-node ./scripts/codegen.ts && ts-node ./scripts/plotgen.ts && tsc && webpack --config webpack.config.js --mode production && cp -a dist ./web/ && cp package.json README.md LICENSE ./dist/ && npx typedoc --out web/docs src/index.ts",
"test": "jest",
"start": "webpack-dev-server --open",
"build-tests": "ts-node ./scripts/testgen.ts && webpack --config webpack.config.tests.js",
"build-onnx": "pbjs -t static-module -w commonjs -o src/onnx.js external/onnx.proto && pbts -o src/onnx.d.ts src/onnx.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/praeclarum/webgpu-torch.git"
},
"keywords": [
"torch",
"nn",
"webgpu",
"ai",
"machine learning",
"deep learning",
"neural networks",
"autograd",
"gpu",
"acceleration"
],
"author": "Frank A. Krueger",
"license": "MIT",
"bugs": {
"url": "https://github.com/praeclarum/webgpu-torch/issues"
},
"homepage": "https://praeclarum.org/webgpu-torch",
"devDependencies": {
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"madge": "^6.0.0",
"prettier": "2.8.8",
"protobufjs-cli": "~1.1.1",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4",
"webpack": "^5.81.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"@webgpu/types": "^0.1.31",
"@xtuc/long": "^4.2.2",
"cross-fetch": "^3.1.6"
}
}