simplecloud 0.0.1-beta.2
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/README.md +123 -0
- package/dist/cli.js +488 -0
- package/dist/index.js +511 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "simplecloud",
|
|
3
|
+
"version": "0.0.1-beta.2",
|
|
4
|
+
"description": "simplecloud.app cli",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"cli",
|
|
8
|
+
"cloud",
|
|
9
|
+
"tool"
|
|
10
|
+
],
|
|
11
|
+
"author": "simplecloud.app",
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"access": "public"
|
|
15
|
+
},
|
|
16
|
+
"engines": {
|
|
17
|
+
"node": ">=18.0.0"
|
|
18
|
+
},
|
|
19
|
+
"main": "dist/index.js",
|
|
20
|
+
"bin": {
|
|
21
|
+
"simplecloud": "dist/cli.js",
|
|
22
|
+
"sc": "dist/cli.js"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist"
|
|
26
|
+
],
|
|
27
|
+
"scripts": {
|
|
28
|
+
"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 node && bun build src/cli.ts --outdir dist --format esm --minify --target node",
|
|
30
|
+
"prepublishOnly": "bun run build",
|
|
31
|
+
"test:cli": "bun run build && node dist/cli.js --help",
|
|
32
|
+
"local:setup": "bun run build && echo 'alias scl=\"node $(pwd)/dist/cli.js\"' >> ~/.zshrc && echo 'Local alias added! Run: source ~/.zshrc'",
|
|
33
|
+
"local:link": "bun run build && npm link",
|
|
34
|
+
"local:unlink": "npm unlink -g",
|
|
35
|
+
"local:pack": "bun run build && mkdir -p temp && npm pack --pack-destination=./temp && mv ./temp/simplecloud-*.tgz ./temp/simplecloud.tgz",
|
|
36
|
+
"lint": "biome check .",
|
|
37
|
+
"lint:fix": "biome check . --write",
|
|
38
|
+
"generate:api": "swagger-typescript-api generate -p https://controller.platform.simplecloud.app/swagger/doc.json -o src/lib/generated -n simplecloud-api.ts --sort-types --single-http-client --clean-output"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@biomejs/biome": "2.2.4",
|
|
42
|
+
"@effect/platform-bun": "^0.79.1",
|
|
43
|
+
"@types/bun": "latest",
|
|
44
|
+
"swagger-typescript-api": "^13.2.16"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"typescript": "^5"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@clack/prompts": "^1.0.0-alpha.6",
|
|
51
|
+
"@effect/cli": "^0.72.1",
|
|
52
|
+
"@effect/platform-node": "^0.97.0",
|
|
53
|
+
"@opentui/solid": "^0.1.25",
|
|
54
|
+
"better-auth": "^1.3.14",
|
|
55
|
+
"chalk": "^5.6.2",
|
|
56
|
+
"effect": "^3.17.13",
|
|
57
|
+
"solid-js": "^1.9.9",
|
|
58
|
+
"table": "^6.9.0"
|
|
59
|
+
}
|
|
60
|
+
}
|