-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.4 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
{
"name": "xebrine",
"description": "Xebrine is a music player PWA for power users",
"private": true,
"version": "10.0",
"type": "module",
"author": "exerinity <me@exerinity.com>",
"scripts": {
"dev": "vite",
"stage": "wrangler types && tsc --noEmit && tsc -p worker --noEmit && vite build && vite preview",
"dev:worker": "wrangler dev",
"types": "wrangler types",
"build": "wrangler types && tsc --noEmit && tsc -p worker --noEmit && vite build",
"preview": "vite preview",
"deploy": "npm run build && wrangler deploy",
"icons": "cargo run --quiet --release --manifest-path tools/icon-gen/Cargo.toml",
"icons:transparent": "cargo run --quiet --release --manifest-path tools/icon-gen/Cargo.toml -- --transparent",
"icons:blank": "cargo run --quiet --release --manifest-path tools/icon-gen/Cargo.toml -- --blank-background",
"icons:white": "cargo run --quiet --release --manifest-path tools/icon-gen/Cargo.toml -- --white-background"
},
"dependencies": {
"mespeak": "^2.0.2",
"music-metadata": "^11.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.18.1"
},
"devDependencies": {
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@types/wicg-file-system-access": "^2023.10.5",
"@vitejs/plugin-react": "^4.4.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vite-plugin-pwa": "^1.0.0"
}
}