forked from brownhci/WebGazer
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.61 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
{
"name": "webgazer",
"version": "2.0.1",
"repository": {
"type": "git",
"url": "https://github.com/brownhci/WebGazer.git"
},
"license": "GPL-3.0-or-later",
"main": "dist/webgazer.js",
"module": "src/index.mjs",
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"test": "./test/run_tests_and_server.sh",
"dev": "webpack --progress --colors --config webpack.config.js --mode=development",
"build": "webpack --progress --colors --config webpack.config.js --mode=production && cp dist/webgazer.js www/. && cp dist/webgazer.js www/data/src/.",
"gen_docs": "jsdoc -c jsdoc.conf.json src/*"
},
"files": [
"/dist",
"/src"
],
"husky": {
"hooks": {
"pre-commit": "npm run build",
"post-checkout": "yarnhook && npm --prefix ./www install ./www/ && npm run build",
"post-merge": "yarnhook && npm --prefix ./www install ./www/ && npm run build",
"post-rewrite": "yarnhook && npm --prefix ./www install ./www/ && npm run build"
}
},
"keywords": [
"webgazer",
"eyetracking",
"webcam"
],
"dependencies": {
"@tensorflow-models/facemesh": "0.0.3",
"@tensorflow/tfjs": "2.0.1",
"localforage": "1.7.3",
"numeric": "1.2.6",
"regression": "2.0.1"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"chai": "^4.2.0",
"file-loader": "^6.0.0",
"husky": "^4.2.5",
"jsdoc": "^3.6.5",
"mocha": "^8.1.1",
"ndb": "^1.1.5",
"parallel-webpack": "2.6.0",
"puppeteer": "^5.2.1",
"rimraf": "2.6.3",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"yarnhook": "^0.4.3"
}
}