swixter 0.1.2 → 0.1.4
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 +43 -11
- package/dist/cli/index.js +4516 -1696
- package/package.json +6 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swixter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "CLI tool for managing AI coding assistant configurations - easily switch between providers (Claude Code, Codex, Continue) with Anthropic, Ollama, or custom APIs",
|
|
5
5
|
"main": "dist/cli/index.js",
|
|
6
6
|
"module": "dist/cli/index.js",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"LICENSE"
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
|
-
"build": "bun run build:ui && bun build src/cli/index.ts --outdir dist/cli --target
|
|
17
|
+
"build": "bun run build:ui && bun build src/cli/index.ts --outdir dist/cli --target node",
|
|
18
18
|
"build:ui": "cd ui && bun install && bun run build && node -e \"require('fs').mkdirSync('../dist/ui',{recursive:true});require('fs').cpSync('dist','../dist/ui',{recursive:true})\"",
|
|
19
|
-
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target
|
|
19
|
+
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target node",
|
|
20
20
|
"cli": "bun src/cli/index.ts",
|
|
21
21
|
"cli:dev": "bun --hot src/cli/index.ts",
|
|
22
22
|
"ui:dev": "cd ui && bun run dev",
|
|
@@ -71,7 +71,8 @@
|
|
|
71
71
|
"@types/bun": "latest",
|
|
72
72
|
"@types/js-yaml": "^4.0.9",
|
|
73
73
|
"@types/node": "^24.10.1",
|
|
74
|
-
"@types/semver": "^7.7.1"
|
|
74
|
+
"@types/semver": "^7.7.1",
|
|
75
|
+
"@types/ws": "^8.18.1"
|
|
75
76
|
},
|
|
76
77
|
"peerDependencies": {
|
|
77
78
|
"typescript": "^5"
|
|
@@ -90,6 +91,7 @@
|
|
|
90
91
|
"semver": "^7.7.4",
|
|
91
92
|
"smol-toml": "^1.5.2",
|
|
92
93
|
"tailwind-merge": "^3.5.0",
|
|
94
|
+
"ws": "^8.20.0",
|
|
93
95
|
"zod": "^4.1.12"
|
|
94
96
|
}
|
|
95
97
|
}
|