-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
66 lines (66 loc) · 1.85 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": "blink-detection",
"version": "1.2.1",
"description": "Detect the user's blink and wink using machine learning",
"main": "dist/index.js",
"author": "Ankur Kedia <[email protected]> (https://ankurkedia.com)",
"engines": {
"node": ">=8.9.0"
},
"dependencies": {
"@tensorflow-models/face-landmarks-detection": "^0.0.3",
"@tensorflow/tfjs-backend-webgl": "^3.9.0",
"@tensorflow/tfjs-converter": "^3.9.0",
"@tensorflow/tfjs-core": "^3.9.0"
},
"scripts": {
"watch": "cross-env NODE_ENV=development parcel index.html --no-hmr --target browser",
"watch:demo": "cross-env NODE_ENV=development parcel demo/index.html --no-hmr --target browser",
"build": "cross-env NODE_ENV=production parcel build index.js --global blink-detection",
"build-demo": "cross-env NODE_ENV=production parcel build demo/index.html --public-url ./"
},
"browser": {
"crypto": false
},
"keywords": [
"javascript",
"tfjs",
"machine learning",
"tensorflow.js",
"tensorflow"
],
"devDependencies": {
"@babel/core": "7.12.0",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.7.0",
"clang-format": "~1.2.2",
"cross-env": "^5.2.0",
"eslint": "^4.19.1",
"parcel-bundler": "^1.12.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theankurkedia/blink-detection.git"
},
"eslintConfig": {
"env": {
"es6": true
},
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
}
},
"type": "module",
"eslintIgnore": [
"dist/",
"node_modules/"
],
"bugs": {
"url": "https://github.com/theankurkedia/blink-detection/issues"
},
"homepage": "https://github.com/theankurkedia/blink-detection#readme",
"license": "GPL-3.0"
}