@agent-link/server 0.1.124 → 0.1.125
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 +54 -54
- package/web/app.js +1192 -1192
- package/web/favicon.svg +10 -10
- package/web/landing.html +1244 -1241
- package/web/modules/connection.js +880 -880
- package/web/modules/fileBrowser.js +379 -379
- package/web/modules/filePreview.js +187 -187
- package/web/modules/sidebar.js +376 -376
- package/web/modules/streaming.js +110 -110
- package/web/style.css +2941 -2941
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@agent-link/server",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "AgentLink relay server",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"repository": {
|
|
7
|
-
"type": "git",
|
|
8
|
-
"url": "https://github.com/yilee/agentlink.git",
|
|
9
|
-
"directory": "server"
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://github.com/yilee/agentlink",
|
|
12
|
-
"bugs": {
|
|
13
|
-
"url": "https://github.com/yilee/agentlink/issues"
|
|
14
|
-
},
|
|
15
|
-
"keywords": [
|
|
16
|
-
"agentlink",
|
|
17
|
-
"claude",
|
|
18
|
-
"claude-code",
|
|
19
|
-
"relay",
|
|
20
|
-
"websocket",
|
|
21
|
-
"ai-agent"
|
|
22
|
-
],
|
|
23
|
-
"type": "module",
|
|
24
|
-
"main": "dist/index.js",
|
|
25
|
-
"types": "dist/index.d.ts",
|
|
26
|
-
"files": [
|
|
27
|
-
"dist",
|
|
28
|
-
"web"
|
|
29
|
-
],
|
|
30
|
-
"bin": {
|
|
31
|
-
"agentlink-server": "dist/cli.js"
|
|
32
|
-
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "tsc",
|
|
35
|
-
"prepublishOnly": "npm run build",
|
|
36
|
-
"dev": "tsx watch src/index.ts",
|
|
37
|
-
"start": "node dist/index.js"
|
|
38
|
-
},
|
|
39
|
-
"engines": {
|
|
40
|
-
"node": ">=18.0.0"
|
|
41
|
-
},
|
|
42
|
-
"dependencies": {
|
|
43
|
-
"commander": "^12.0.0",
|
|
44
|
-
"express": "^4.18.2",
|
|
45
|
-
"tweetnacl": "^1.0.3",
|
|
46
|
-
"tweetnacl-util": "^0.15.1",
|
|
47
|
-
"ws": "^8.16.0"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@types/express": "^4.17.21",
|
|
51
|
-
"@types/ws": "^8.5.10",
|
|
52
|
-
"tsx": "^4.7.0"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@agent-link/server",
|
|
3
|
+
"version": "0.1.125",
|
|
4
|
+
"description": "AgentLink relay server",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "https://github.com/yilee/agentlink.git",
|
|
9
|
+
"directory": "server"
|
|
10
|
+
},
|
|
11
|
+
"homepage": "https://github.com/yilee/agentlink",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/yilee/agentlink/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"agentlink",
|
|
17
|
+
"claude",
|
|
18
|
+
"claude-code",
|
|
19
|
+
"relay",
|
|
20
|
+
"websocket",
|
|
21
|
+
"ai-agent"
|
|
22
|
+
],
|
|
23
|
+
"type": "module",
|
|
24
|
+
"main": "dist/index.js",
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"files": [
|
|
27
|
+
"dist",
|
|
28
|
+
"web"
|
|
29
|
+
],
|
|
30
|
+
"bin": {
|
|
31
|
+
"agentlink-server": "dist/cli.js"
|
|
32
|
+
},
|
|
33
|
+
"scripts": {
|
|
34
|
+
"build": "tsc",
|
|
35
|
+
"prepublishOnly": "npm run build",
|
|
36
|
+
"dev": "tsx watch src/index.ts",
|
|
37
|
+
"start": "node dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"engines": {
|
|
40
|
+
"node": ">=18.0.0"
|
|
41
|
+
},
|
|
42
|
+
"dependencies": {
|
|
43
|
+
"commander": "^12.0.0",
|
|
44
|
+
"express": "^4.18.2",
|
|
45
|
+
"tweetnacl": "^1.0.3",
|
|
46
|
+
"tweetnacl-util": "^0.15.1",
|
|
47
|
+
"ws": "^8.16.0"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/express": "^4.17.21",
|
|
51
|
+
"@types/ws": "^8.5.10",
|
|
52
|
+
"tsx": "^4.7.0"
|
|
53
|
+
}
|
|
54
|
+
}
|