@swirls/cli 0.0.22 → 0.0.23
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-shim.js +2 -0
- package/dist/cli.js +318 -520
- package/package.json +8 -13
- package/dist/bash-complete.js +0 -596
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swirls/cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.23",
|
|
4
4
|
"description": "Swirls command line application",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Swirls",
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
},
|
|
9
9
|
"type": "module",
|
|
10
10
|
"bin": {
|
|
11
|
-
"
|
|
12
|
-
"cli": "./dist/cli.js",
|
|
11
|
+
"cli": "./dist/cli-shim.js",
|
|
13
12
|
"swirls": "./dist/cli.js"
|
|
14
13
|
},
|
|
15
14
|
"files": [
|
|
@@ -18,31 +17,27 @@
|
|
|
18
17
|
"scripts": {
|
|
19
18
|
"prebuild": "tsc -p tsconfig.json",
|
|
20
19
|
"build": "if [ \"$SWIRLS_ENV\" = 'production' ]; then tsup; elif command -v op >/dev/null 2>&1; then op run --no-masking --env-file=.env.development -- tsup; else tsup; fi",
|
|
21
|
-
"postbuild": "chmod +x ./dist/cli.js ./dist/
|
|
20
|
+
"postbuild": "cp scripts/cli-shim.js dist/cli-shim.js && chmod +x ./dist/cli.js ./dist/cli-shim.js",
|
|
22
21
|
"dev": "op run --no-masking --env-file=.env.development -- tsup --watch",
|
|
23
22
|
"pkg:publish": "bun publish",
|
|
23
|
+
"pkg:publish:dry": "bun publish --dry-run",
|
|
24
24
|
"prepublishOnly": "SWIRLS_ENV=production bun run build"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@byteslice/result": "0.3.0",
|
|
28
|
+
"@clack/prompts": "1.0.0",
|
|
28
29
|
"@clerk/clerk-js": "5.109.2",
|
|
29
30
|
"@clerk/shared": "3.44.0",
|
|
30
31
|
"@orpc/client": "1.12.2",
|
|
31
32
|
"@orpc/contract": "1.12.2",
|
|
32
|
-
"@stricli/auto-complete": "1.2.4",
|
|
33
33
|
"@stricli/core": "1.2.4",
|
|
34
34
|
"@swirls/core": "0.0.1",
|
|
35
|
-
"@swirls/sdk": "0.0.
|
|
35
|
+
"@swirls/sdk": "0.0.13",
|
|
36
36
|
"@types/node": "24.10.0",
|
|
37
|
-
"
|
|
37
|
+
"console-table-printer": "2.15.0",
|
|
38
38
|
"dotenv": "16.4.7",
|
|
39
|
-
"ink": "6.4.0",
|
|
40
|
-
"ink-select-input": "6.2.0",
|
|
41
|
-
"ink-spinner": "5.0.0",
|
|
42
|
-
"ink-text-input": "^6.0.0",
|
|
43
|
-
"jiti": "2.6.1",
|
|
44
39
|
"open": "10.2.0",
|
|
45
|
-
"
|
|
40
|
+
"sucrase": "3.35.1",
|
|
46
41
|
"tsup": "8.5.1",
|
|
47
42
|
"typescript": "5.9.3",
|
|
48
43
|
"zod": "4.3.5"
|