forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.94 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@tensorflow/tfjs-backend-webgl",
"version": "0.0.0",
"description": "GPU accelerated WebGL backend for TensorFlow.js",
"private": false,
"main": "dist/tf-backend-webgl.node.js",
"jsdelivr": "dist/tf-backend-webgl.min.js",
"unpkg": "dist/tf-backend-webgl.min.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"miniprogram": "dist/miniprogram",
"engines": {
"yarn": ">= 1.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs.git"
},
"license": "Apache-2.0",
"devDependencies": {
"@babel/polyfill": "^7.8.7",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"@tensorflow/tfjs-core": "link:../tfjs-core",
"@types/jasmine": "~3.0.0",
"clang-format": "~1.2.4",
"jasmine": "~3.1.0",
"jasmine-core": "~3.1.0",
"karma": "~4.2.0",
"karma-browserstack-launcher": "~1.4.0",
"karma-chrome-launcher": "~2.2.0",
"karma-commonjs": "^1.0.0",
"karma-jasmine": "~1.1.1",
"karma-typescript": "~5.0.2",
"karma-typescript-es6-transform": "^5.0.2",
"npm-run-all": "~4.1.3",
"rimraf": "~2.6.2",
"rollup": "~2.3.2",
"rollup-plugin-terser": "~5.3.0",
"rollup-plugin-visualizer": "~3.3.2",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"tslint-no-circular-imports": "~0.5.0",
"typescript": "3.5.3",
"yalc": "~1.0.0-pre.21"
},
"scripts": {
"build-ci": "tsc && yarn bundle-ci",
"build": "tsc && yarn bundle",
"bundle": "rollup -c",
"bundle-ci": "rollup -c --ci",
"build-deps": "yarn build-core && yarn build-cpu-backend",
"build-deps-ci": "yarn build-core-ci && yarn build-cpu-backend-ci",
"build-core": "cd ../tfjs-core && yarn && yarn build",
"build-core-ci": "cd ../tfjs-core && yarn && yarn build-ci",
"build-cpu-backend": "cd ../tfjs-backend-cpu && yarn && yarn build",
"build-cpu-backend-ci": "cd ../tfjs-backend-cpu && yarn && yarn build-ci",
"build-npm": "./scripts/build-npm.sh",
"link-local": "yalc link",
"publish-local": "rimraf dist/ && yarn build && rollup -c && yalc push",
"publish-npm": "npm publish",
"lint": "tslint -p . -t verbose",
"test": "yarn && yarn build-deps && karma start",
"test-dev": "karma start --testEnv webgl2",
"run-browserstack": "karma start --browserstack",
"test-ci": "./scripts/test-ci.sh"
},
"dependencies": {
"@tensorflow/tfjs-backend-cpu": "link:../tfjs-backend-cpu",
"@types/offscreencanvas": "~2019.3.0",
"@types/seedrandom": "2.4.27",
"@types/webgl-ext": "0.0.30",
"@types/webgl2": "0.0.5",
"seedrandom": "2.4.3"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "link:../tfjs-core"
},
"browser": {
"util": false,
"crypto": false
},
"sideEffects": [
"./dist/register_all_kernels.js",
"./dist/flags_webgl.js",
"./dist/base.js",
"./dist/index.js"
]
}