swixter 0.1.1 → 0.1.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 +55 -1
- package/dist/cli/index.js +1258 -162
- package/package.json +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swixter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
],
|
|
16
16
|
"scripts": {
|
|
17
17
|
"build": "bun run build:ui && bun build src/cli/index.ts --outdir dist/cli --target bun --standalone",
|
|
18
|
-
"build:ui": "cd ui && bun install && bun run build &&
|
|
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
19
|
"build:cli": "bun build src/cli/index.ts --outdir dist/cli --target bun --standalone",
|
|
20
20
|
"cli": "bun src/cli/index.ts",
|
|
21
21
|
"cli:dev": "bun --hot src/cli/index.ts",
|