@swirls/cli 0.1.1 → 0.1.5
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 +13 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swirls/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Swirls command line application",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Swirls",
|
|
@@ -15,35 +15,38 @@
|
|
|
15
15
|
"launcher"
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "bun run
|
|
18
|
+
"build": "bun run scripts/build.ts",
|
|
19
|
+
"db:studio": "drizzle-kit studio",
|
|
19
20
|
"dev": "bun run --watch src/bin/cli.ts",
|
|
20
|
-
"publish": "
|
|
21
|
-
"publish:dry": "SWIRLS_ENV=production bun run build && bun
|
|
21
|
+
"publish": "echo 'Publishing is performed by the CI/CD pipeline, not manually.'",
|
|
22
|
+
"publish:dry": "SWIRLS_ENV=production bun run build && bun publish --ignore-scripts --dry-run",
|
|
23
|
+
"version": "bun run scripts/version.ts"
|
|
22
24
|
},
|
|
23
25
|
"devDependencies": {
|
|
24
26
|
"@byteslice/result": "0.3.0",
|
|
25
27
|
"@clack/prompts": "1.0.0",
|
|
26
28
|
"@clerk/clerk-js": "5.109.2",
|
|
27
29
|
"@clerk/shared": "3.44.0",
|
|
30
|
+
"@libsql/client": "0.17.0",
|
|
31
|
+
"@openrouter/ai-sdk-provider": "1.5.4",
|
|
28
32
|
"@orpc/client": "1.12.2",
|
|
29
33
|
"@orpc/contract": "1.12.2",
|
|
30
34
|
"@stricli/core": "1.2.4",
|
|
31
35
|
"@swirls/core": "0.0.1",
|
|
36
|
+
"@swirls/execution": "0.0.1",
|
|
37
|
+
"@swirls/language": "0.0.1",
|
|
32
38
|
"@swirls/sdk": "0.0.13",
|
|
33
39
|
"@types/bun": "1.3.9",
|
|
34
40
|
"@types/node": "24.10.0",
|
|
35
41
|
"console-table-printer": "2.15.0",
|
|
36
42
|
"dotenv": "16.4.7",
|
|
43
|
+
"drizzle-kit": "0.31.9",
|
|
44
|
+
"drizzle-orm": "0.44.7",
|
|
37
45
|
"open": "10.2.0",
|
|
46
|
+
"openworkflow": "^0.7.3",
|
|
38
47
|
"typescript": "5.9.3",
|
|
39
48
|
"zod": "4.3.5"
|
|
40
49
|
},
|
|
41
|
-
"optionalDependencies": {
|
|
42
|
-
"@swirls/cli-darwin-arm64": "0.1.1",
|
|
43
|
-
"@swirls/cli-darwin-x64": "0.1.1",
|
|
44
|
-
"@swirls/cli-linux-arm64": "0.1.1",
|
|
45
|
-
"@swirls/cli-linux-x64": "0.1.1"
|
|
46
|
-
},
|
|
47
50
|
"engines": {
|
|
48
51
|
"node": ">=22"
|
|
49
52
|
},
|