-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.5 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "actioncensus",
"version": "1.0.0",
"description": "Professional webcam-based motor assessment for research and clinical applications",
"main": "dist/actioncensus.min.js",
"module": "src/actioncensus.js",
"types": "index.d.ts",
"files": [
"dist/",
"src/",
"index.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "webpack --mode production",
"dev": "webpack --mode development --watch",
"test": "jest",
"lint": "eslint src/",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShadowCoder1/actioncensus.git"
},
"keywords": [
"motor-assessment",
"finger-tapping",
"webcam",
"computer-vision",
"mediapipe",
"research",
"clinical",
"neurological-assessment",
"parkinson",
"motor-control"
],
"author": "Your Name Here",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShadowCoder1/actioncensus/issues"
},
"homepage": "https://actioncensus.org",
"peerDependencies": {
"@mediapipe/camera_utils": "^0.3.0",
"@mediapipe/hands": "^0.4.0"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"babel-loader": "^9.2.1",
"eslint": "^8.45.0",
"jest": "^29.6.0",
"terser-webpack-plugin": "^5.3.14",
"webpack": "^5.102.0",
"webpack-cli": "^5.1.4"
},
"engines": {
"node": ">=14.0.0"
},
"jsdelivr": "dist/actioncensus.min.js",
"unpkg": "dist/actioncensus.min.js"
}