cc-linker 0.0.1 → 0.0.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/LICENSE +21 -0
- package/README.md +157 -117
- package/dist/cli.js +565 -427
- package/dist/cli.js.map +34 -33
- package/package.json +10 -8
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cc-linker",
|
|
3
|
-
"version": "0.0.
|
|
4
|
-
"description": "Bridge
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Bridge mobile chat apps and Claude Code CLI sessions — seamless conversation switching between terminal and IM",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "wuyujun",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+https://github.com/yujuntea/cc-
|
|
9
|
+
"url": "git+https://github.com/yujuntea/cc-linker.git"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/yujuntea/cc-
|
|
11
|
+
"homepage": "https://github.com/yujuntea/cc-linker#readme",
|
|
12
12
|
"bugs": {
|
|
13
|
-
"url": "https://github.com/yujuntea/cc-
|
|
13
|
+
"url": "https://github.com/yujuntea/cc-linker/issues"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
16
16
|
"claude-code",
|
|
@@ -18,10 +18,12 @@
|
|
|
18
18
|
"lark",
|
|
19
19
|
"session",
|
|
20
20
|
"bridge",
|
|
21
|
-
"cli"
|
|
21
|
+
"cli",
|
|
22
|
+
"chat-app",
|
|
23
|
+
"cross-platform"
|
|
22
24
|
],
|
|
23
25
|
"bin": {
|
|
24
|
-
"cc-
|
|
26
|
+
"cc-linker": "./dist/cli.js"
|
|
25
27
|
},
|
|
26
28
|
"files": [
|
|
27
29
|
"dist/cli.js",
|
|
@@ -29,7 +31,7 @@
|
|
|
29
31
|
],
|
|
30
32
|
"scripts": {
|
|
31
33
|
"dev": "bun run src/index.ts",
|
|
32
|
-
"build": "bun build src/index.ts --compile --outfile dist/cc-
|
|
34
|
+
"build": "bun build src/index.ts --compile --outfile dist/cc-linker",
|
|
33
35
|
"build:npm": "bun build src/index.ts --outdir dist --target node --sourcemap && mv dist/index.js dist/cli.js && mv dist/index.js.map dist/cli.js.map 2>/dev/null; chmod +x dist/cli.js",
|
|
34
36
|
"prepublishOnly": "bun run build:npm",
|
|
35
37
|
"test": "bun test",
|