swixter 0.1.6 → 0.1.8
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 +21 -0
- package/dist/cli/index.js +1304 -189
- package/package.json +3 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "swixter",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.8",
|
|
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",
|
|
@@ -9,9 +9,7 @@
|
|
|
9
9
|
"swixter": "dist/cli/index.js"
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
13
|
-
"README.md",
|
|
14
|
-
"LICENSE"
|
|
12
|
+
"dist"
|
|
15
13
|
],
|
|
16
14
|
"scripts": {
|
|
17
15
|
"build": "bun run build:ui && bun build src/cli/index.ts --outdir dist/cli --target node",
|
|
@@ -22,13 +20,7 @@
|
|
|
22
20
|
"ui:dev": "cd ui && bun run dev",
|
|
23
21
|
"test": "bun test",
|
|
24
22
|
"test:e2e": "bash test/e2e-docker.sh",
|
|
25
|
-
"
|
|
26
|
-
"version": "node scripts/sync-version.js && git add src/constants/meta.ts",
|
|
27
|
-
"postversion": "git push --follow-tags",
|
|
28
|
-
"release": "npm version",
|
|
29
|
-
"release:patch": "npm version patch",
|
|
30
|
-
"release:minor": "npm version minor",
|
|
31
|
-
"release:major": "npm version major"
|
|
23
|
+
"prepublishOnly": "cp ../../README.md . && cp ../../LICENSE ."
|
|
32
24
|
},
|
|
33
25
|
"keywords": [
|
|
34
26
|
"claude",
|