forked from tensorflow/tfjs-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.29 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
{
"name": "@tensorflow-models/face-landmarks-detection",
"version": "1.0.0",
"description": "Pretrained face landmarks detection model",
"main": "dist/index.js",
"jsnext:main": "dist/face-landmarks-detection.esm.js",
"module": "dist/face-landmarks-detection.esm.js",
"unpkg": "dist/face-landmarks-detection.min.js",
"jsdelivr": "dist/face-landmarks-detection.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tensorflow/tfjs-models.git"
},
"peerDependencies": {
"@mediapipe/face_mesh": "~0.4.0",
"@tensorflow/tfjs-backend-webgl": "^3.12.0",
"@tensorflow/tfjs-converter": "^3.12.0",
"@tensorflow/tfjs-core": "^3.12.0"
},
"devDependencies": {
"@babel/polyfill": "^7.10.4",
"@mediapipe/face_mesh": "^0.4.0",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-typescript": "^3.0.0",
"@tensorflow/tfjs-backend-cpu": "^3.12.0",
"@tensorflow/tfjs-backend-webgl": "^3.12.0",
"@tensorflow/tfjs-converter": "^3.12.0",
"@tensorflow/tfjs-core": "^3.12.0",
"@types/jasmine": "~2.8.8",
"babel-core": "~6.26.0",
"babel-plugin-transform-runtime": "~6.23.0",
"jasmine": "~3.1.0",
"jasmine-core": "~3.1.0",
"karma": "~6.3.1",
"karma-browserstack-launcher": "~1.6.0",
"karma-chrome-launcher": "~2.2.0",
"karma-jasmine": "~1.1.0",
"karma-spec-reporter": "~0.0.32",
"karma-typescript": "~5.5.1",
"karma-typescript-es6-transform": "^5.1.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.9.9",
"yalc": "~1.0.0-pre.21"
},
"scripts": {
"bundle": "rollup -c",
"build": "rimraf dist && tsc && yarn bundle",
"publish-local": "yarn build && rollup -c && yalc publish",
"run-browserstack": "karma start --browserstack",
"test-node": "NODE_PRESERVE_SYMLINKS=1 ts-node --skip-ignore --project tsconfig.test.json run_tests.ts",
"test": "yarn && karma start",
"test-ci": "yarn run-browserstack --browsers=bs_chrome_mac",
"build-npm": "yarn build && yarn bundle",
"lint": "tslint -p . -t verbose"
},
"license": "Apache-2.0",
"dependencies": {
"rimraf": "^3.0.2"
}
}