-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.11 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "skywrite",
"version": "0.1.0",
"description": "A privacy-minded browser app for drawing in the air with hand gestures, MediaPipe, WebRTC, and Canvas.",
"author": "Saad Kamal",
"license": "MIT",
"type": "module",
"homepage": "https://skywrite.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/saadkamal/skywrite.dev.git"
},
"bugs": {
"url": "https://github.com/saadkamal/skywrite.dev/issues"
},
"keywords": [
"gesture-drawing",
"mediapipe",
"hand-tracking",
"webrtc",
"canvas",
"react",
"vite"
],
"scripts": {
"dev": "vite",
"typecheck": "tsc -b",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"build": "vite build",
"lint": "eslint .",
"check": "npm run lint && npm run typecheck && npm run test:coverage && npm run build",
"audit:prod": "npm audit --omit=dev",
"generate:og": "node scripts/generate-og.mjs",
"preview": "vite preview",
"start": "vite preview"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@mediapipe/camera_utils": "^0.3.1675466862",
"@mediapipe/hands": "^0.4.1675469240",
"i18next": "^26.0.10",
"i18next-browser-languagedetector": "^8.2.1",
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^17.0.7",
"react-router-dom": "^6.26.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/node": "^24.10.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@vitejs/plugin-react": "^6.0.2",
"autoprefixer": "^10.4.18",
"canvas": "^3.2.0",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"jsdom": "^27.3.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^8.0.14",
"vitest": "^4.0.14",
"@vitest/coverage-v8": "^4.0.14"
}
}