-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 KB
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": "@mirrory/eyeblink",
"version": "1.0.0",
"author": "Yasuaki Uechi <y@uechi.io> (https://uechi.io/)",
"scripts": {
"bootstrap": "yarn link && yarn --cwd demo bootstrap",
"build": "shx rm -rf dist && tsc && rollup -c",
"ship:demo": "yarn build && cd demo && yarn ship"
},
"dependencies": {
"@tensorflow-models/facemesh": "^0.0.3"
},
"peerDependencies": {
"@tensorflow/tfjs-converter": "^1.7.2",
"@tensorflow/tfjs-core": "^1.7.2"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.0.0",
"@tensorflow/tfjs": "^2.0.0",
"@tensorflow/tfjs-converter": "^2.0.0",
"@tensorflow/tfjs-core": "^2.0.0",
"@tensorflow/tfjs-node": "^2.0.0",
"@types/node": "^14.0.9",
"@wessberg/rollup-plugin-ts": "^1.2.24",
"rollup": "^2.6.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-terser": "^6.1.0",
"shx": "^0.3.2",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"types": "dist/index.d.ts",
"main": "dist/index.js",
"unpkg": "dist/umd/bundle.min.js",
"jsdelivr": "dist/umd/bundle.min.js",
"files": [
"dist",
"models"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"browserslist": [
"last 1 Chrome versions"
]
}