-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"name": "create-b3-cf-app",
"version": "0.2.3",
"description": "Scaffold a Bun + Hono + Cloudflare Workers + React monorepo in seconds",
"packageManager": "bun@1.3.14",
"type": "module",
"bin": {
"create-b3-cf-app": "dist/index.js"
},
"files": [
"dist",
"template"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build",
"dev": "bun run src/index.ts",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"docs:deploy": "cd docs && bun run deploy"
},
"dependencies": {
"@clack/prompts": "^0.10.1",
"kleur": "^4.1.5"
},
"devDependencies": {
"@types/node": "^22.15.3",
"typescript": "^5.9.3"
}
}