forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.8 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
{
"name": "@tensorflow/tfjs-backend-webgpu",
"version": "0.0.1-alpha.4",
"main": "dist/tf-backend-webgpu.node.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"unpkg": "dist/tf-backend-webgpu.min.js",
"jsdelivr": "dist/tf-backend-webgpu.min.js",
"miniprogram": "dist/miniprogram",
"scripts": {
"benchmark": "yarn test --//:grep=benchmark",
"build-ci": "yarn build",
"build": "yarn --cwd .. bazel build tfjs-backend-webgpu:tfjs-backend-webgpu_pkg",
"bundle": "yarn build",
"bundle-ci": "yarn bundle",
"build-npm": "yarn build",
"publish-npm": "yarn --cwd .. bazel run tfjs-backend-webgpu:tfjs-backend-webgpu_pkg.publish",
"test": "yarn --cwd .. bazel test tfjs-backend-webgpu:tfjs-backend-webgpu_test --test_output=streamed",
"test-dev": "yarn --cwd .. bazel run tfjs-backend-webgpu:tfjs-backend-webgpu_test --test_output=streamed"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs.git",
"directory": "tfjs-backend-webgpu"
},
"devDependencies": {
"@babel/polyfill": "^7.8.7",
"@tensorflow/tfjs-core": "link:../link-package/node_modules/@tensorflow/tfjs-core",
"jasmine": "link:../node_modules/jasmine",
"jasmine-core": "link:../node_modules/jasmine-core",
"karma": "~6.4.0",
"karma-browserstack-launcher": "~1.6.0",
"karma-chrome-launcher": "~3.1.1",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "~5.1.0",
"karma-typescript": "~5.5.3",
"karma-typescript-es6-transform": "^5.0.2"
},
"dependencies": {
"@tensorflow/tfjs-backend-cpu": "link:../link-package/node_modules/@tensorflow/tfjs-backend-cpu"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "link:../link-package/node_modules/@tensorflow/tfjs-core"
}
}