@wings006/agent-link 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.
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@wings006/agent-link",
3
+ "version": "0.1.0",
4
+ "description": "多 Agent 聊天系统 - 连接多台电脑上的 Claude Code,支持局域网发现和跨网络中继通信",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "agent-link": "dist/index.js",
9
+ "agent-link-daemon": "dist/daemon.js",
10
+ "agent-link-relay": "dist/relay-server.js"
11
+ },
12
+ "files": [
13
+ "dist",
14
+ "README.md"
15
+ ],
16
+ "scripts": {
17
+ "build": "tsc",
18
+ "dev": "tsx src/index.ts",
19
+ "test": "vitest run",
20
+ "test:watch": "vitest"
21
+ },
22
+ "keywords": [
23
+ "a2a",
24
+ "mcp",
25
+ "agent",
26
+ "claude-code"
27
+ ],
28
+ "author": "",
29
+ "license": "MIT",
30
+ "dependencies": {
31
+ "@modelcontextprotocol/sdk": "^1.29.0",
32
+ "better-sqlite3": "^12.8.0",
33
+ "bonjour-service": "^1.3.0",
34
+ "node-notifier": "^10.0.1",
35
+ "uuid": "^13.0.0",
36
+ "ws": "^8.20.0"
37
+ },
38
+ "devDependencies": {
39
+ "@types/better-sqlite3": "^7.6.13",
40
+ "@types/node": "^25.5.0",
41
+ "@types/node-notifier": "^8.0.5",
42
+ "@types/uuid": "^10.0.0",
43
+ "@types/ws": "^8.18.1",
44
+ "tsx": "^4.21.0",
45
+ "typescript": "^6.0.2",
46
+ "vitest": "^4.1.2"
47
+ }
48
+ }