-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 KB
/
package.json
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
{
"name": "yazzy",
"version": "0.0.1",
"dependencies": {
"@ai-sdk/anthropic": "^1.1.2",
"@ai-sdk/deepseek": "^0.1.3",
"@ai-sdk/openai": "^1.1.2",
"@hono/zod-validator": "^0.4.2",
"@mozilla/readability": "^0.5.0",
"@tailwindcss/cli": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"ai": "^4.1.2",
"dompurify": "^3.1.6",
"drizzle-orm": "^0.38.4",
"hono": "^4.6.18",
"jsdom": "^26.0.0",
"lite-youtube-embed": "^0.3.3",
"tailwindcss": "^4.0.0",
"turndown": "^7.2.0",
"typescript": "^5.5.4",
"zod": "^3.24.1"
},
"scripts": {
"check": "biome check --write",
"dev": "NODE_ENV=development bun --watch run src/server.tsx",
"css": "tailwindcss --input static/styles.css --output static/styles.min.css --cwd src",
"build": "bun run css --minify && NODE_ENV=production bun build src/server.tsx --compile --outfile dist/yazzy && mkdir -p dist/src/db/migrations/meta && cp -r src/db/migrations/ dist/src/db/migrations/"
},
"type": "module",
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@libsql/client": "^0.14.0",
"@types/bun": "^1.2.0",
"@types/dompurify": "^3.0.5",
"@types/jsdom": "^21.1.7",
"@types/turndown": "^5.0.5",
"drizzle-kit": "^0.30.2",
"lefthook": "^1.10.10"
},
"trustedDependencies": [
"@biomejs/biome",
"@parcel/watcher",
"esbuild",
"lefthook",
"sharp"
]
}