-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.38 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
{
"name": "high-desert",
"version": "0.5.0",
"description": "A desktop-grade web player for the Art Bell radio archive",
"author": "Jackson Goode",
"license": "MIT",
"homepage": "https://highdesert.space",
"repository": {
"type": "git",
"url": "https://github.com/jacksongoode/High-Desert"
},
"keywords": [
"art-bell",
"radio",
"archive",
"audio-player",
"windows-98",
"nextjs"
],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:mutations": "node scripts/mutate-check.mjs"
},
"dependencies": {
"clsx": "^2.1.1",
"dexie": "^4.3.0",
"dexie-react-hooks": "^4.2.0",
"music-metadata-browser": "^2.5.11",
"next": "^16.2.12",
"pg": "^8.22.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"spark-md5": "^3.0.2",
"tailwind-merge": "^3.4.0",
"zustand": "^5.0.14"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^22.20.1",
"@types/pg": "^8.20.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/spark-md5": "^3.0.5",
"eslint": "^9",
"eslint-config-next": "^16.2.12",
"fake-indexeddb": "^6.2.5",
"jsdom": "^26",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^3"
}
}