-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.02 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
{
"name": "desk-rave",
"version": "0.1.2",
"private": true,
"type": "module",
"description": "A tiny pixel-art club for your desk that reacts to whatever you play, with a Creative-Commons soundtrack and a gentle focus loop.",
"scripts": {
"dev": "vite --host 0.0.0.0",
"build": "tsc && vite build",
"build:itch": "tsc && vite build --mode itch && node -e \"const fs=require('fs');fs.rmSync('dist-itch/media',{recursive:true,force:true});fs.rmSync('dist-itch/sw.js',{force:true});\"",
"preview": "vite preview --host 0.0.0.0",
"preview:itch": "vite preview --mode itch --port 5199",
"tauri": "tauri"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.4",
"typescript": "^5.7.2",
"vite": "^6.0.5"
},
"dependencies": {
"@mediapipe/tasks-vision": "^0.10.35",
"@tauri-apps/api": "^2.11.1",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"@types/qrcode": "^1.5.6",
"qrcode": "^1.5.4"
}
}