@concavejs/cli 0.0.1-alpha.4
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.
Potentially problematic release.
This version of @concavejs/cli might be problematic. Click here for more details.
- package/dist/assets/dashboard/dashboard.js +1 -0
- package/dist/assets/manifest.json +54 -0
- package/dist/assets/runtime-bun/server/index.js +44533 -0
- package/dist/assets/runtime-cf/runtime.bundle.js +34902 -0
- package/dist/assets/runtime-node/server/index.js +47366 -0
- package/dist/cli.js +10890 -0
- package/package.json +37 -0
package/package.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@concavejs/cli",
|
|
3
|
+
"version": "0.0.1-alpha.4",
|
|
4
|
+
"license": "FSL-1.1-Apache-2.0",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"type": "module",
|
|
9
|
+
"bin": {
|
|
10
|
+
"concave": "./dist/cli.js"
|
|
11
|
+
},
|
|
12
|
+
"files": [
|
|
13
|
+
"dist",
|
|
14
|
+
"templates"
|
|
15
|
+
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "rm -rf dist && bun run --cwd ../dashboard-local build && bun run --cwd ../core build && bun run --cwd ../runtime-base build && bun run --cwd ../runtime-cf-base build && bun run --cwd ../runtime-cf build && bun run --cwd ../runtime-node build && bun run --cwd ../runtime-bun build && bun build ./src/cli/cli.ts --outfile dist/cli.js --target node --format esm && bun scripts/build-assets.ts && chmod +x dist/cli.js",
|
|
18
|
+
"dev": "bun ./src/cli/cli.ts dev",
|
|
19
|
+
"test": "bun test --run"
|
|
20
|
+
},
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"chokidar": "^4.0.3",
|
|
23
|
+
"commander": "^14.0.1",
|
|
24
|
+
"esbuild": "^0.24.0",
|
|
25
|
+
"picocolors": "^1.1.1",
|
|
26
|
+
"tsx": "^4.19.2"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@concavejs/runtime-cf": "0.0.1-alpha.4",
|
|
30
|
+
"@concavejs/runtime-bun": "0.0.1-alpha.4",
|
|
31
|
+
"@concavejs/runtime-node": "0.0.1-alpha.4",
|
|
32
|
+
"@types/node": "^24.9.1"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"wrangler": ">=3.0.0"
|
|
36
|
+
}
|
|
37
|
+
}
|