-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "chanfana-openapi-template",
"description": "Complete backend API template using Hono + Chanfana + D1 + Vitest.",
"private": true,
"type": "module",
"cloudflare": {
"label": "Backend OpenAPI Template",
"products": [
"Workers",
"D1"
],
"categories": [
"storage"
],
"docs_url": "https://chanfana.com",
"preview_icon_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/1b2805d9-e7fb-4576-5176-6b409e251800/public",
"preview_image_url": "https://imagedelivery.net/wSMYJvS3Xw-n339CbDyDIA/cbde46cf-20fa-4548-7f70-1ae8c2f48900/preview",
"publish": true
},
"scripts": {
"cf-typegen": "wrangler types",
"deploy": "wrangler deploy",
"dev": "pnpm seedLocalDb && wrangler dev",
"predeploy": "wrangler d1 migrations apply DB --remote",
"seedLocalDb": "wrangler d1 migrations apply DB --local",
"schema": "npx chanfana",
"test": "wrangler deploy --dry-run && npx vitest run --config tests/vitest.config.mts",
"mcp": "tsx mcp-server.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"chanfana": "2.8.1",
"hono": "4.8.2",
"zod": "3.25.67"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "0.8.44",
"@types/node": "24.0.4",
"tsx": "^4.21.0",
"typescript": "5.8.3",
"wrangler": "4.21.x"
}
}