-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.49 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
{
"name": "panda-desiiignare",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Panda Desiiignare — bZ — Web Audio API music experience",
"scripts": {
"dev": "vite",
"cast:preview": "vite --open=/cast-receiver/?demo=1",
"prebuild": "node scripts/validate-lyrics.mjs && node scripts/gen-og-cards.mjs && node scripts/gen-sitemap.mjs && node scripts/gen-tracks-manifest.mjs && node scripts/gen-cast-meta.mjs",
"lyrics:validate": "node scripts/validate-lyrics.mjs",
"lyrics:rebuild": "node scripts/rebuild-lyrics-from-cache.mjs",
"lyrics:clamp": "node scripts/clamp-lyric-spans.mjs",
"lint": "oxlint src worker scripts",
"build": "tsc -b && vite build && node scripts/build-embed-component.mjs",
"typecheck": "tsc -b --noEmit",
"format": "prettier --write \"**/*.{ts,tsx,js,mjs,cjs,json,md,html,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,mjs,cjs,json,md,html,css}\"",
"og:cards": "node scripts/gen-og-cards.mjs",
"preview": "vite preview --port 4173 --host",
"drop:broadcast": "node scripts/drop-broadcast.mjs",
"lyrics:capitalize": "node scripts/capitalize-lyrics.mjs",
"lyrics:fetch-suno": "node scripts/fetch-suno-lyrics.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:prod": "playwright test --config=playwright.prod.config.ts",
"verify:prod": "npm run test:e2e:prod",
"prepare": "lefthook install || true",
"sync-suno": "node scripts/fetch-suno-metadata.mjs --merge --realign && python3 scripts/analyze-audio.py && node scripts/build-suno-meta.mjs",
"sync-suno:cached": "node scripts/fetch-suno-metadata.mjs --cached --merge --realign && python3 scripts/analyze-audio.py && node scripts/build-suno-meta.mjs",
"analyze-audio": "python3 scripts/analyze-audio.py",
"sync-lyrics:whisper-cache": "node scripts/whisper-cache.mjs",
"sync-lyrics:align": "node scripts/align-whisper-lyrics.mjs",
"sync-lyrics:all": "npm run sync-lyrics:whisper-cache && npm run sync-lyrics:align"
},
"dependencies": {
"lottie-web": "^5.12.2",
"sharp": "^0.34.5"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@cloudflare/workers-types": "^4.20260504.1",
"@playwright/test": "^1.59.1",
"@types/node": "^25.9.1",
"lefthook": "^1.13.6",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^6.0.7",
"vitest": "^2.1.9",
"wrangler": "^4.87.0"
}
}