-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
{
"name": "eyetracking",
"version": "0.0.1",
"description": "Eyetracking in the browser using a webcam",
"scripts": {
"test": "jest",
"build": "rollup --config",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jspsych/eyetracking.git"
},
"keywords": [
"eye tracking"
],
"author": "Josh de Leeuw",
"license": "MIT",
"bugs": {
"url": "https://github.com/jspsych/eyetracking/issues"
},
"homepage": "https://github.com/jspsych/eyetracking#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.1",
"buffer": "^6.0.3",
"husky": "^8.0.0",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"prettier": "2.6.2",
"pretty-quick": "^3.1.3",
"process": "^0.11.10",
"rollup": "^2.74.1",
"ts-jest": "^28.0.3",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@mediapipe/face_detection": "^0.4.1646425229",
"@mediapipe/face_mesh": "^0.4.1633559619",
"@tensorflow-models/face-detection": "^1.0.1",
"@tensorflow-models/face-landmarks-detection": "^0.0.3",
"@tensorflow/tfjs-backend-webgl": "^3.18.0",
"@tensorflow/tfjs-converter": "^3.18.0",
"@tensorflow/tfjs-core": "^3.18.0"
}
}