-
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) · 983 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 983 Bytes
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
{
"author": "Kevin Peckham",
"name": "chord-player",
"version": "0.3.6",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@sveltejs/adapter-vercel": "^5.7.0",
"@sveltejs/kit": "^2.20.8",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@unocss/extractor-svelte": "^66.1.2",
"@unocss/preset-wind3": "^66.1.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.8.3",
"unocss": "^66.1.2",
"vite": "^6.3.5",
"vite-plugin-devtools-json": "^0.2.0"
},
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite dev",
"format": "bunx biome format --write .",
"lint": "bunx biome lint --write .",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"test": "bun test",
"test:watch": "bun test --watch"
},
"engines": {
"bun": "1.x",
"node": "22.x"
},
"type": "module"
}