Build Resonant v0.1 as a polished single-user Tauri/OpenSubsonic music player with demo playback, responsive library browsing, search, favorites, queue, server setup, tests, and docs

Hop-State: A_06FNDQKBYQT60ENR92VY6KG
Hop-Proposal: R_06FNDQJ64YSD232PJ7AT47R
Hop-Task: T_06FNDK6YRGJ4TEATJEC6EQR
Hop-Attempt: AT_06FNDK6YRMRZ1VHNB189B48
This commit is contained in:
2026-07-12 08:07:25 -07:00
committed by Hop
parent 45656d74f1
commit 38b140905f
33 changed files with 13341 additions and 0 deletions
+36
View File
@@ -0,0 +1,36 @@
{
"name": "resonant",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"test": "vitest run",
"test:watch": "vitest",
"tauri": "tauri",
"check": "npm run test && npm run build && cargo check --manifest-path src-tauri/Cargo.toml"
},
"dependencies": {
"@tauri-apps/api": "^2.11.1",
"lucide-react": "^1.24.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/node": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/spark-md5": "^3.0.5",
"@vitejs/plugin-react": "latest",
"esbuild": "latest",
"jsdom": "latest",
"typescript": "latest",
"vite": "^8.1.4",
"vitest": "latest"
}
}