-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.7 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.7 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": "gesture-lab",
"version": "0.1.0",
"type": "module",
"description": "Gesture Lab - Fun experiments with movement tracking",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"validate-build": "eslint . --max-warnings=0 && tsc --noEmit && prettier --check . && vite build"
},
"keywords": [
"mediapipe",
"three.js",
"hand-tracking",
"webgl",
"interactive",
"particle-system",
"galaxy",
"typescript"
],
"author": "quiet-node",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/quiet-node/gesture-lab.git"
},
"homepage": "https://github.com/quiet-node/gesture-lab#readme",
"bugs": {
"url": "https://github.com/quiet-node/gesture-lab/issues"
},
"dependencies": {
"@dimforge/rapier3d-compat": "^0.19.3",
"@fontsource/nunito": "^5.2.7",
"@fontsource/playfair-display": "^5.2.8",
"@lume/three-meshline": "^4.0.5",
"@mediapipe/tasks-vision": "^0.10.32",
"@types/howler": "^2.2.12",
"@vercel/analytics": "^1.6.1",
"gsap": "^3.14.2",
"howler": "^2.2.4",
"inferencejs": "^1.2.3",
"postprocessing": "^6.38.2",
"three": "^0.182.0",
"three-mesh-bvh": "^0.9.8",
"typescript": "^5.9.3",
"vite": "^7.3.1"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^25.2.2",
"@types/three": "^0.182.0",
"eslint": "^9.39.2",
"prettier": "^3.8.1",
"typescript-eslint": "^8.54.0",
"vite-plugin-static-copy": "^3.2.0"
}
}