simplecloud 0.0.1-beta.3 → 0.0.1-beta.6
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/cli.js +345 -455
- package/dist/index.js +360 -470
- package/package.json +4 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "simplecloud",
|
|
3
|
-
"version": "0.0.1-beta.
|
|
3
|
+
"version": "0.0.1-beta.6",
|
|
4
4
|
"description": "simplecloud.app cli",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -13,9 +13,6 @@
|
|
|
13
13
|
"publishConfig": {
|
|
14
14
|
"access": "public"
|
|
15
15
|
},
|
|
16
|
-
"engines": {
|
|
17
|
-
"node": ">=18.0.0"
|
|
18
|
-
},
|
|
19
16
|
"main": "dist/index.js",
|
|
20
17
|
"bin": {
|
|
21
18
|
"simplecloud": "dist/cli.js",
|
|
@@ -26,10 +23,10 @@
|
|
|
26
23
|
],
|
|
27
24
|
"scripts": {
|
|
28
25
|
"dev": "bun run build && bun scripts/build-dev.ts",
|
|
29
|
-
"build": "rm -rf dist && bun build src/index.ts --outdir dist --format esm --minify --target
|
|
26
|
+
"build": "rm -rf dist && bun build src/index.ts --outdir dist --format esm --minify --target bun && bun build src/cli.ts --outdir dist --format esm --minify --target bun && echo '#!/usr/bin/env bun' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js",
|
|
30
27
|
"prepublishOnly": "bun run build",
|
|
31
|
-
"test:cli": "bun run build &&
|
|
32
|
-
"local:setup": "bun run build && echo 'alias scl=\"
|
|
28
|
+
"test:cli": "bun run build && bun dist/cli.js --help",
|
|
29
|
+
"local:setup": "bun run build && echo 'alias scl=\"bun $(pwd)/dist/cli.js\"' >> ~/.zshrc && echo 'Local alias added! Run: source ~/.zshrc'",
|
|
33
30
|
"local:link": "bun run build && npm link",
|
|
34
31
|
"local:unlink": "npm unlink -g",
|
|
35
32
|
"local:pack": "bun run build && mkdir -p temp && npm pack --pack-destination=./temp && mv ./temp/simplecloud-*.tgz ./temp/simplecloud.tgz",
|
|
@@ -49,7 +46,6 @@
|
|
|
49
46
|
"dependencies": {
|
|
50
47
|
"@clack/prompts": "^1.0.0-alpha.6",
|
|
51
48
|
"@effect/cli": "^0.72.1",
|
|
52
|
-
"@effect/platform-node": "^0.97.0",
|
|
53
49
|
"@opentui/solid": "^0.1.25",
|
|
54
50
|
"better-auth": "^1.3.14",
|
|
55
51
|
"chalk": "^5.6.2",
|