-
Notifications
You must be signed in to change notification settings - Fork 577
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 5 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 5 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "flare-stack-blog",
"version": "1.5.2",
"type": "module",
"author": {
"email": "kuangdadu@gmail.com",
"name": "akuang",
"url": "https://github.com/du2333"
},
"license": "GPL-3.0-only",
"private": true,
"scripts": {
"dev": "vite dev --port 3000",
"build": "bun scripts/generate-manifest.ts && vite build",
"deploy": "bun db:migrate && wrangler deploy",
"serve": "vite preview",
"test": "vitest run",
"test:node": "vitest run --config vitest.node.config.ts",
"lint": "biome lint",
"lint:fix": "biome check --write",
"format": "biome format --write",
"typecheck": "tsc --noEmit --incremental --tsBuildInfoFile .cache/typecheck.tsbuildinfo",
"check": "biome check --write && bun typecheck",
"i18n:compile": "bun paraglide-js compile --project ./project.inlang --outdir ./src/paraglide",
"i18n:verify": "bun scripts/verify-translations.ts",
"i18n:prune-unused": "bun scripts/prune-unused-translations.ts",
"wrangler:prepare": "bun scripts/prepare-wrangler-config.ts",
"cf-typegen": "wrangler types --env-interface Env",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"db:generate": "drizzle-kit generate",
"db:migrate": "bun scripts/safe-d1-migrate/main.ts",
"db:migrate:local": "bun scripts/safe-d1-migrate/main.ts --local",
"db:migrate:unsafe": "wrangler d1 migrations apply DB --remote",
"auth:generate-schema": "bunx @better-auth/cli generate --config auth-cli.ts --output src/lib/db/schema/auth.table.ts",
"mcp:inspect": "bunx -y @modelcontextprotocol/inspector",
"create-theme": "bun scripts/create-theme.ts",
"release": "export GITHUB_TOKEN=$(gh auth token) && release-it",
"prepare": "husky"
},
"dependencies": {
"@better-auth/core": "1.5.5",
"@better-auth/utils": "0.3.1",
"@cloudflare/workers-oauth-provider": "^0.6.0",
"@hono/zod-validator": "^0.7.6",
"@hookform/resolvers": "^5.2.2",
"@modelcontextprotocol/sdk": "1.26.0",
"@noble/hashes": "^2.0.1",
"@orama/orama": "^3.1.16",
"@tanstack/react-devtools": "^0.10.5",
"@tanstack/react-query": "^5.100.11",
"@tanstack/react-query-devtools": "^5.100.11",
"@tanstack/react-router": "^1.170.4",
"@tanstack/react-router-devtools": "^1.167.0",
"@tanstack/react-router-ssr-query": "^1.167.0",
"@tanstack/react-start": "^1.168.6",
"@tanstack/router-plugin": "^1.168.6",
"@tiptap/core": "^3.20.0",
"@tiptap/extension-blockquote": "^3.20.0",
"@tiptap/extension-code-block": "^3.20.0",
"@tiptap/extension-file-handler": "^3.20.0",
"@tiptap/extension-heading": "^3.20.0",
"@tiptap/extension-image": "^3.20.0",
"@tiptap/extension-mathematics": "^3.20.0",
"@tiptap/extension-placeholder": "^3.20.0",
"@tiptap/extension-table": "^3.20.0",
"@tiptap/extension-table-cell": "^3.20.0",
"@tiptap/extension-table-header": "^3.20.0",
"@tiptap/extension-table-of-contents": "^3.20.0",
"@tiptap/extension-table-row": "^3.20.0",
"@tiptap/pm": "^3.20.0",
"@tiptap/react": "^3.20.0",
"@tiptap/starter-kit": "^3.20.0",
"@tiptap/static-renderer": "^3.20.0",
"agents": "^0.7.7",
"ai": "^6.0.23",
"better-auth": "1.5.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"diff": "^8.0.2",
"drizzle-orm": "^0.45.2",
"drizzle-zod": "^0.8.3",
"feed": "^5.2.0",
"fflate": "^0.8.2",
"gray-matter": "^4.0.3",
"hono": "^4.10.8",
"katex": "^0.16.33",
"linkedom": "^0.18.12",
"lucide-react": "^1.16.0",
"marked": "^17.0.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-hook-form": "^7.68.0",
"react-textarea-autosize": "^8.5.9",
"recharts": "^3.6.0",
"simple-icons": "^16.20.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.0",
"tldts": "^7.0.27",
"tw-animate-css": "^1.3.6",
"worker-mailer": "^1.2.1",
"workers-ai-provider": "^3.1.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@cloudflare/vite-plugin": "^1.37.1",
"@cloudflare/vitest-pool-workers": "^0.16.6",
"@fontsource-variable/jetbrains-mono": "^5.2.8",
"@fontsource-variable/noto-sans-sc": "^5.2.9",
"@fontsource-variable/noto-serif-sc": "^5.2.10",
"@inlang/paraglide-js": "^2.14.0",
"@release-it/conventional-changelog": "^10.0.5",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.3.0",
"@tanstack/devtools-vite": "^0.7.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/runner": "^4.1.0",
"@vitest/snapshot": "^4.1.0",
"drizzle-kit": "^0.31.10",
"fallow": "^2.76.0",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"release-it": "^19.2.4",
"shiki": "^3.15.0",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0",
"wrangler": "^4.92.0"
}
}