-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.27 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.27 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
{
"name": "telescope",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "pnpm run \"/^build:.+/\"",
"build:wrangler": "envsubst < wrangler.toml.in > wrangler.toml",
"build:sveltekit": "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",
"generate": "drizzle-kit generate",
"lint": "biome lint",
"lint:write": "biome lint --write",
"format": "biome format",
"format:write": "biome format --write"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@cloudflare/workers-types": "^4.20241230.0",
"@ryoppippi/unplugin-typia": "^1.1.0",
"@sveltejs/adapter-cloudflare": "^5.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@unocss/extractor-svelte": "^0.65.3",
"drizzle-kit": "^0.30.1",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"typescript": "^5.0.0",
"unocss": "^0.65.3",
"vite": "^5.4.11"
},
"dependencies": {
"@hono/typia-validator": "^0.1.0",
"@unocss/reset": "^0.65.3",
"drizzle-orm": "^0.38.3",
"hono": "^4.6.15",
"typia": "^7.5.1"
}
}