-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.44 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"name": "tldrmodels",
"type": "module",
"version": "0.0.1",
"packageManager": "bun@1.2.9",
"scripts": {
"dev": "bunx --bun astro dev",
"build": "bunx --bun astro build",
"build:keywords": "bun run infra/embedding/keywords.ts",
"build:schemas": "bun run misc/build-schemas.ts",
"preview": "bunx --bun astro preview",
"astro": "bunx --bun astro",
"infra": "bun run --bun --env-file=../.env --cwd infra alchemy.run.ts",
"db": "bun run --env-file=../.env --cwd infra drizzle-kit"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.6",
"@astrojs/mdx": "^4.2.4",
"@astrojs/sitemap": "^3.3.0",
"@google/genai": "^0.9.0",
"@iconify-json/lucide": "^1.2.37",
"@iconify-json/simple-icons": "^1.2.33",
"@iconify/utils": "^2.3.0",
"@tailwindcss/vite": "^4.1.4",
"@types/alpinejs": "^3.13.11",
"alchemy": "^0.12.7",
"alpinejs": "^3.14.9",
"astro": "^5.7.4",
"cloudflare": "^4.2.0",
"drizzle-orm": "^0.42.0",
"tailwindcss": "^4.1.4",
"zod": "^3.24.3",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.1",
"@cloudflare/workers-types": "^4.20250423.0",
"@types/bun": "^1.2.10",
"@types/js-yaml": "^4.0.9",
"daisyui": "^5.0.27",
"drizzle-kit": "^0.31.0",
"js-yaml": "^4.1.0",
"typescript": "^5.8.3",
"zod-to-json-schema": "^3.24.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"semi": false,
"printWidth": 120,
"tabWidth": 2,
"useTabs": true
}
}