forked from tensorflow/tfjs-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.68 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
{
"name": "@tensorflow-models/handpose",
"version": "0.0.7",
"description": "Pretrained hand detection model",
"main": "dist/index.js",
"jsnext:main": "dist/handpose.esm.js",
"module": "dist/handpose.esm.js",
"unpkg": "dist/handpose.min.js",
"jsdelivr": "dist/handpose.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-models.git"
},
"peerDependencies": {
"@tensorflow/tfjs-converter": "^3.0.0",
"@tensorflow/tfjs-core": "^3.0.0",
"@tensorflow/tfjs-backend-webgl": "^3.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"@tensorflow/tfjs-converter": "^3.0.0",
"@tensorflow/tfjs-core": "^3.0.0",
"@tensorflow/tfjs-backend-cpu": "^3.0.0",
"@tensorflow/tfjs-backend-webgl": "^3.0.0",
"@types/jasmine": "~2.8.8",
"babel-core": "~6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"jasmine-core": "~3.5.0",
"rollup": "~2.3.2",
"rollup-plugin-terser": "~7.0.2",
"rollup-plugin-visualizer": "~3.3.2",
"ts-node": "~8.8.2",
"tslint": "~5.18.0",
"typescript": "~3.5.3",
"yalc": "~1.0.0-pre.21"
},
"scripts": {
"bundle": "rollup -c",
"build": "rimraf dist && tsc && yarn bundle",
"publish-local": "yarn build && rollup -c && yalc publish",
"test": "ts-node --skip-ignore --project tsconfig.test.json run_tests.ts",
"build-npm": "yarn build && yarn bundle",
"lint": "tslint -p . -t verbose",
"publish-demo": "./scripts/publish-demo.sh"
},
"license": "Apache-2.0",
"dependencies": {
"rimraf": "^3.0.2"
}
}