bunkit-cli 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +23183 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bunkit-cli",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Beautiful CLI for creating production-ready Bun projects",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"bunkit": "./dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"main": "./dist/index.js",
|
|
10
|
+
"module": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.js"
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"dist",
|
|
20
|
+
"README.md",
|
|
21
|
+
"LICENSE"
|
|
22
|
+
],
|
|
23
|
+
"scripts": {
|
|
24
|
+
"dev": "bun run --hot src/index.ts",
|
|
25
|
+
"build": "bun build src/index.ts --outdir dist --target bun --format esm && bun run build:types",
|
|
26
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
27
|
+
"test": "bun test",
|
|
28
|
+
"typecheck": "tsc --noEmit"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@bunkit/core": "workspace:*",
|
|
32
|
+
"@bunkit/templates": "workspace:*",
|
|
33
|
+
"@bunkit/generators": "workspace:*",
|
|
34
|
+
"@clack/prompts": "catalog:",
|
|
35
|
+
"picocolors": "catalog:",
|
|
36
|
+
"commander": "catalog:",
|
|
37
|
+
"execa": "catalog:",
|
|
38
|
+
"consola": "catalog:",
|
|
39
|
+
"pathe": "catalog:",
|
|
40
|
+
"defu": "catalog:"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@types/bun": "latest",
|
|
44
|
+
"typescript": "^5.7.2"
|
|
45
|
+
},
|
|
46
|
+
"keywords": [
|
|
47
|
+
"cli",
|
|
48
|
+
"bun",
|
|
49
|
+
"scaffold",
|
|
50
|
+
"generator",
|
|
51
|
+
"template",
|
|
52
|
+
"starter",
|
|
53
|
+
"boilerplate",
|
|
54
|
+
"monorepo",
|
|
55
|
+
"nextjs",
|
|
56
|
+
"hono",
|
|
57
|
+
"supabase",
|
|
58
|
+
"drizzle"
|
|
59
|
+
],
|
|
60
|
+
"author": "Arakiss",
|
|
61
|
+
"license": "MIT",
|
|
62
|
+
"repository": {
|
|
63
|
+
"type": "git",
|
|
64
|
+
"url": "https://github.com/Arakiss/bunkit.git",
|
|
65
|
+
"directory": "packages/cli"
|
|
66
|
+
},
|
|
67
|
+
"bugs": {
|
|
68
|
+
"url": "https://github.com/Arakiss/bunkit/issues"
|
|
69
|
+
},
|
|
70
|
+
"homepage": "https://github.com/Arakiss/bunkit#readme"
|
|
71
|
+
}
|