forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.81 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
{
"name": "@tensorflow/tfjs-backend-webgpu",
"version": "0.0.1-alpha.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/tf-webgpu.esm.js",
"module": "dist/tf-webgpu.esm.js",
"unpkg": "dist/tf-webgpu.min.js",
"jsdelivr": "dist/tf-webgpu.min.js",
"scripts": {
"publish-local": "rimraf dist/ && yarn build && rollup -c && yalc push",
"publish-npm": "./scripts/publish-npm.sh",
"build-core": "cd ../tfjs-core && yarn && yarn build",
"build": "yarn build-core && rimraf dist/ && tsc",
"link-local": "yalc link",
"unlink-local": "yalc remove",
"lint": "tslint -p . -t verbose",
"test": "karma start --browsers=chrome_webgpu --excludeTest='src/benchmark_ops_test.ts'",
"test-ci": "./scripts/test-ci.sh",
"benchmark": "karma start --grep=benchmark --browsers=chrome_webgpu"
},
"license": "Apache-2.0",
"devDependencies": {
"@tensorflow/tfjs-core": "link:../tfjs-core",
"@types/jasmine": "~2.5.53",
"clang-format": "~1.2.2",
"http-server": "~0.10.0",
"jasmine-core": "~3.1.0",
"karma": "~4.0.0",
"karma-browserstack-launcher": "~1.4.0",
"karma-chrome-launcher": "~2.2.0",
"karma-firefox-launcher": "~1.1.0",
"karma-jasmine": "~1.1.1",
"karma-typescript": "~4.1.1",
"karma-typescript-es6-transform": "^4.1.1",
"rimraf": "~2.6.2",
"rollup": "~1.26.3",
"rollup-plugin-commonjs": "~10.1.0",
"rollup-plugin-node-resolve": "~5.2.0",
"rollup-plugin-terser": "~5.1.1",
"rollup-plugin-typescript2": "~0.25.2",
"tslint": "~5.20.0",
"tslint-no-circular-imports": "~0.7.0",
"typescript": "3.5.3",
"yalc": "~1.0.0-pre.21"
},
"dependencies": {
"@webgpu/glslang": "0.0.12",
"@webgpu/types": "0.0.18"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "link:../tfjs-core"
}
}