@ekay/claude-im 0.1.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +119 -0
  3. package/dist/index.js +1710 -0
  4. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@ekay/claude-im",
3
+ "version": "0.1.0",
4
+ "description": "通过飞书/企微等 IM 与 Claude Code 对话。WebSocket 长连接,流式卡片输出。",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "bin": {
8
+ "claude-im": "./dist/index.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md",
13
+ "LICENSE"
14
+ ],
15
+ "scripts": {
16
+ "dev": "tsx watch src/index.ts",
17
+ "build": "tsup",
18
+ "start": "node dist/index.js",
19
+ "typecheck": "tsc --noEmit",
20
+ "prepublishOnly": "npm run build"
21
+ },
22
+ "keywords": ["claude", "feishu", "lark", "im", "ai", "bot", "claude-code"],
23
+ "author": "ekay",
24
+ "license": "MIT",
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "engines": {
29
+ "node": ">=18"
30
+ },
31
+ "dependencies": {
32
+ "@anthropic-ai/claude-agent-sdk": "^0.2.114",
33
+ "@larksuiteoapi/node-sdk": "^1.63.1",
34
+ "chalk": "^5",
35
+ "commander": "^14",
36
+ "js-yaml": "^4"
37
+ },
38
+ "overrides": {
39
+ "axios": "1.16.1"
40
+ },
41
+ "devDependencies": {
42
+ "@types/js-yaml": "^4",
43
+ "@types/node": "^22",
44
+ "tsup": "^8.5.1",
45
+ "tsx": "^4",
46
+ "typescript": "^6"
47
+ }
48
+ }