@cinnabun/cli 0.0.3
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 +10043 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@cinnabun/cli",
|
|
3
|
+
"version": "0.0.3",
|
|
4
|
+
"description": "CLI tool for the Cinnabun framework",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"cinnabun": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "bun build src/index.ts --outdir dist --target bun --entry-naming [name].[ext]",
|
|
14
|
+
"dev": "bun run src/index.ts",
|
|
15
|
+
"prepublishOnly": "bun run build",
|
|
16
|
+
"postinstall": "node -e \"console.log('\\n🍰 Cinnabun CLI installed!\\nRun: cinnabun new my-app\\n')\""
|
|
17
|
+
},
|
|
18
|
+
"keywords": [
|
|
19
|
+
"cinnabun",
|
|
20
|
+
"cli",
|
|
21
|
+
"generator",
|
|
22
|
+
"scaffolding",
|
|
23
|
+
"bun",
|
|
24
|
+
"framework"
|
|
25
|
+
],
|
|
26
|
+
"author": "",
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"homepage": "https://github.com/cinnabunjs/cinnabun#readme",
|
|
29
|
+
"repository": {
|
|
30
|
+
"type": "git",
|
|
31
|
+
"url": "https://github.com/cinnabunjs/cinnabun.git"
|
|
32
|
+
},
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/cinnabunjs/cinnabun/issues"
|
|
35
|
+
},
|
|
36
|
+
"engines": {
|
|
37
|
+
"bun": ">=1.0.0"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"commander": "^13.0.0"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@cinnabun/core": "workspace:*",
|
|
44
|
+
"@cinnabun/queue": "workspace:*",
|
|
45
|
+
"@types/bun": "latest",
|
|
46
|
+
"typescript": "^5.9.3"
|
|
47
|
+
}
|
|
48
|
+
}
|