-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.21 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "audio-sort",
"version": "0.2.0",
"description": "Listen to sorting algorithms",
"keywords": [
"algorithms",
"audio",
"sort",
"sorting"
],
"homepage": "https://github.com/skratchdot/audio-sort",
"bugs": {
"url": "https://github.com/skratchdot/audio-sort/issues"
},
"author": "skratchdot",
"repository": {
"type": "git",
"url": "git://github.com/skratchdot/audio-sort.git"
},
"type": "module",
"scripts": {
"build": "pnpm run clean && vite build",
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"dev": "vite dev",
"start": "pnpm run dev",
"preview": "sirv dist",
"test:browser": "playwright test",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "oxlint --deny-warnings",
"format": "oxfmt",
"format:check": "oxfmt --check",
"typecheck": "tsc --noEmit",
"check": "pnpm run lint && pnpm run format:check && pnpm run typecheck && pnpm test && pnpm run build"
},
"dependencies": {
"@base-ui/react": "^1.8.0",
"@tanstack/react-router": "^1.170.33",
"@tanstack/react-start": "^1.168.50",
"ace-builds": "^1.44.0",
"class-variance-authority": "^0.7.1",
"cn": "^0.2.6",
"d3-array": "^3.2.4",
"d3-color": "^3.1.0",
"d3-scale": "^4.0.2",
"d3-selection": "^3.0.0",
"d3-shape": "^3.2.0",
"file-saver": "^2.0.5",
"jotai": "^2.20.3",
"jsmidgen": "^0.1.8",
"lucide-react": "^1.41.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"shadcn": "^4.21.0",
"timbre": "^14.11.25",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@playwright/test": "^1.63.0",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^26.4.1",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.7",
"@vitejs/plugin-react": "^6.1.1",
"oxfmt": "^0.66.0",
"oxlint": "^1.81.0",
"sirv-cli": "^3.0.1",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"vite": "^8.2.2",
"vitest": "^5.0.0"
},
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@12.3.4",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/skratchdot/audio-sort/blob/master/LICENSE-MIT"
}
]
}