cc-linker 0.0.1
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 +239 -0
- package/dist/cli.js +132370 -0
- package/dist/cli.js.map +590 -0
- package/package.json +60 -0
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "cc-linker",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Bridge Feishu IM and Claude Code CLI sessions — seamless session switching between terminal and chat",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "wuyujun",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/yujuntea/cc-bridge.git"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/yujuntea/cc-bridge#readme",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/yujuntea/cc-bridge/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"claude-code",
|
|
17
|
+
"feishu",
|
|
18
|
+
"lark",
|
|
19
|
+
"session",
|
|
20
|
+
"bridge",
|
|
21
|
+
"cli"
|
|
22
|
+
],
|
|
23
|
+
"bin": {
|
|
24
|
+
"cc-link": "./dist/cli.js"
|
|
25
|
+
},
|
|
26
|
+
"files": [
|
|
27
|
+
"dist/cli.js",
|
|
28
|
+
"dist/cli.js.map"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"dev": "bun run src/index.ts",
|
|
32
|
+
"build": "bun build src/index.ts --compile --outfile dist/cc-bridge",
|
|
33
|
+
"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
|
+
"prepublishOnly": "bun run build:npm",
|
|
35
|
+
"test": "bun test",
|
|
36
|
+
"test:coverage": "bun test --coverage",
|
|
37
|
+
"typecheck": "tsc --noEmit"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"bun": ">=1.0.0"
|
|
41
|
+
},
|
|
42
|
+
"type": "module",
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@types/bun": "latest",
|
|
45
|
+
"@types/inquirer": "^9.0.9",
|
|
46
|
+
"@types/node": "^25.6.0",
|
|
47
|
+
"@types/proper-lockfile": "^4.1.4",
|
|
48
|
+
"typescript": "^6.0.3"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"@iarna/toml": "^2.2.5",
|
|
52
|
+
"@larksuiteoapi/node-sdk": "^1.62.1",
|
|
53
|
+
"chalk": "^5.6.2",
|
|
54
|
+
"cli-table3": "^0.6.5",
|
|
55
|
+
"commander": "^14.0.3",
|
|
56
|
+
"inquirer": "^13.4.2",
|
|
57
|
+
"proper-lockfile": "^4.1.2",
|
|
58
|
+
"zod": "^4.4.2"
|
|
59
|
+
}
|
|
60
|
+
}
|