forked from brownhci/WebGazer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "webgazer",
"version": "3.1.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",
"dev": "webpack --progress --config webpack.config.js --mode development",
"build": "webpack --progress --config webpack.config.js --mode production",
"gen_docs": "jsdoc -c jsdoc.conf.json src/*"
},
"files": [
"/dist",
"/src"
],
"keywords": [
"webgazer",
"eyetracking",
"webcam",
"online"
],
"dependencies": {
"@tensorflow-models/face-landmarks-detection": "0.0.3",
"@tensorflow/tfjs": "^3.15.0",
"localforage": "1.7.3",
"numeric": "1.2.6",
"regression": "2.0.1"
},
"devDependencies": {
"browser-sync": "^2.26.14",
"filemanager-webpack-plugin": "^8.0.0",
"jsdoc": "^3.6.5",
"rimraf": "2.6.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"yarnhook": "^0.4.3"
}
}