cc-zh-watcher 0.1.0 → 0.2.0
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 +237 -121
- package/dist/cli.js +2180 -389
- package/package.json +6 -5
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-zh-watcher",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Side-channel Chinese ↔ English bridge for Claude Code (single-watcher TUI). Type Chinese, Claude sees English; Claude replies in English, you see Chinese.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"cc-zh-watcher": "
|
|
7
|
+
"cc-zh-watcher": "dist/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"main": "./dist/cli.js",
|
|
10
10
|
"files": [
|
|
@@ -24,7 +24,9 @@
|
|
|
24
24
|
"compile:all": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64 && bun run compile:windows-x64",
|
|
25
25
|
"test": "bun test",
|
|
26
26
|
"typecheck": "tsc --noEmit",
|
|
27
|
-
"prepublishOnly": "bun run typecheck && bun test && bun run build"
|
|
27
|
+
"prepublishOnly": "bun run typecheck && bun test && bun run build",
|
|
28
|
+
"install:local": "bash scripts/install-local.sh",
|
|
29
|
+
"uninstall:local": "npm uninstall -g cc-zh-watcher"
|
|
28
30
|
},
|
|
29
31
|
"keywords": [
|
|
30
32
|
"claude-code",
|
|
@@ -61,6 +63,5 @@
|
|
|
61
63
|
"react": "^18.3.1",
|
|
62
64
|
"react-devtools-core": "^7.0.1",
|
|
63
65
|
"typescript": "^5.5.0"
|
|
64
|
-
}
|
|
65
|
-
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
66
|
+
}
|
|
66
67
|
}
|