simplecloud 0.0.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/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "simplecloud",
3
+ "version": "0.0.1",
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
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
26
+ "scripts": {
27
+ "dev": "bun run ./src/index.ts",
28
+ "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",
29
+ "prepublishOnly": "bun run build",
30
+ "test:cli": "bun run build && node dist/cli.js --help",
31
+ "local:install": "bun run build && npm pack && npm install -g ./simplecloud-0.0.1.tgz",
32
+ "local:uninstall": "npm uninstall -g simplecloud",
33
+ "lint": "biome check .",
34
+ "lint:fix": "biome check . --write"
35
+ },
36
+ "devDependencies": {
37
+ "@biomejs/biome": "2.2.4",
38
+ "@types/bun": "latest",
39
+ "@effect/platform-bun": "^0.79.1"
40
+ },
41
+ "peerDependencies": {
42
+ "typescript": "^5"
43
+ },
44
+ "dependencies": {
45
+ "@effect/cli": "^0.69.2",
46
+ "@effect/platform-node": "^0.97.0",
47
+ "effect": "^3.17.13"
48
+ }
49
+ }