-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.23 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.23 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
{
"name": "tsuki",
"version": "0.0.0",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@iconify-json/lucide": "^1.2.60",
"@playwright/test": "^1.54.2",
"@stylistic/eslint-plugin": "^5.2.2",
"@sveltejs/vite-plugin-svelte": "^6.1.0",
"@tanstack/svelte-query": "^5.83.1",
"@tsconfig/svelte": "^5.0.4",
"@types/node": "^24.1.0",
"@unocss/eslint-config": "^66.4.2",
"@unocss/preset-legacy-compat": "^66.4.1",
"@unocss/reset": "^66.6.7",
"@vitejs/plugin-legacy": "^7.1.0",
"eslint-plugin-svelte": "^3.11.0",
"globals": "^16.3.0",
"svelte": "^5.37.3",
"svelte-check": "^4.2.2",
"terser": "^5.43.1",
"typescript": "~5.8.3",
"typescript-eslint": "^8.38.0",
"unocss": "^66.3.3",
"vite": "^7.0.4",
"vitest": "^3.2.4"
},
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint ./src",
"test": "bun run test:vitest && bun run test:playwright",
"test:vitest": "vitest run ./src",
"test:playwright": "bunx playwright test",
"test:playwright:ui": "bunx playwright test --ui",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
},
"type": "module"
}