forked from tensorflow/tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.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
{
"name": "@tensorflow/tfjs-layers",
"version": "0.0.0",
"description": "TensorFlow layers API in JavaScript",
"license": "Apache-2.0 AND MIT",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs.git",
"directory": "tfjs-layers"
},
"private": false,
"main": "dist/tf-layers.node.js",
"types": "dist/index.d.ts",
"jsnext:main": "dist/index.js",
"module": "dist/index.js",
"jsdelivr": "dist/tf-layers.min.js",
"unpkg": "dist/tf-layers.min.js",
"miniprogram": "dist/miniprogram",
"devDependencies": {
"@bazel/bazelisk": "^1.12.0",
"clang-format": "~1.8.0"
},
"scripts": {
"prep": "yarn install && yarn build-ci",
"build": "bazel build :tfjs-layers_pkg",
"build-ci": "yarn build",
"bundle": "yarn build",
"bundle-ci": "yarn bundle",
"build-npm": "bazel build :tfjs-layers_pkg",
"format": "./tools/clang_format_ts.sh",
"publish-npm": "bazel run :tfjs-layers_pkg.publish",
"test-dev": "bazel test :tests --test_output=streamed",
"test": "yarn test-dev",
"run-browserstack": "bazel test :browserstack_bs_chrome_mac_tfjs-layers_webgl2_test"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "link:../link-package/node_modules/@tensorflow/tfjs-core"
}
}