-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.36 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.36 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
{
"name": "bit2-cli",
"version": "3.0.9",
"description": "A modern CLI tool for scaffolding Astro applications with libSQL/Turso database integration and flexible deployment to Cloudflare Pages, Vercel, or Netlify",
"main": "src/cli.js",
"bin": {
"bit2": "./src/cli.js"
},
"type": "module",
"scripts": {
"dev": "bun src/cli.js",
"build": "echo 'No build needed for CLI'",
"test": "bun test",
"test:integration": "./src/cli.js test",
"test:unit": "bun test --bail",
"test:watch": "bun test --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/bitbonsai/bit2.git"
},
"homepage": "https://github.com/bitbonsai/bit2#readme",
"bugs": {
"url": "https://github.com/bitbonsai/bit2/issues"
},
"dependencies": {
"commander": "^12.0.0",
"chalk": "^5.3.0",
"fs-extra": "^11.2.0",
"ora": "^8.0.1",
"wrangler": "^4.28.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4"
},
"keywords": [
"cli",
"astro",
"turso",
"libsql",
"cloudflare",
"cloudflare-pages",
"vercel",
"netlify",
"scaffolding",
"deployment",
"automation",
"sqlite",
"bun",
"ssr",
"edge",
"database",
"full-stack",
"developer-experience"
],
"author": "bit2",
"license": "MIT",
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
}
}