-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.34 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@agent-remote/ssh",
"version": "0.0.4",
"description": "SSH remote tools for AI agents",
"license": "Apache-2.0",
"author": "Charles Francoise",
"homepage": "https://github.com/loderunner/agent-remote#readme",
"repository": {
"type": "git",
"url": "https://github.com/loderunner/agent-remote.git",
"directory": "packages/ssh"
},
"bugs": {
"url": "https://github.com/loderunner/agent-remote/issues"
},
"keywords": [
"ai",
"agents",
"remote",
"ssh",
"ssh2",
"mcp",
"model-context-protocol",
"tools",
"automation",
"anthropic",
"claude",
"agent-sdk"
],
"type": "module",
"exports": {
".": "./src/lib/index.ts"
},
"publishConfig": {
"access": "public",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"bin": {
"remote-ssh-mcp": "./dist/server.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
}
}
},
"files": [
"dist",
"src",
"!src/**/*.test.ts"
],
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run --project=unit",
"test:e2e": "vitest run --project=e2e",
"test:watch:unit": "vitest --project=unit",
"test:watch:e2e": "vitest --project=e2e",
"server": "tsx src/server/server.ts",
"server:watch": "tsx --watch src/server/server.ts",
"clean": "rimraf dist"
},
"dependencies": {
"diff": "^8.0.2",
"minimatch": "^10.0.3",
"nanoid": "^5.1.6",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"ssh2": "^1.17.0",
"yargs": "^18.0.0",
"zod": "^3.25.76",
"zod-to-json-schema": "^3.24.6",
"zod-validation-error": "^4.0.2"
},
"peerDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.0",
"@modelcontextprotocol/sdk": "^1.20.0"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.1.21",
"@agent-remote/core": "workspace:*",
"@modelcontextprotocol/sdk": "^1.20.0",
"@types/ssh2": "^1.15.5",
"@types/yargs": "^17.0.33",
"rimraf": "^6.0.1",
"tsdown": "^0.15.9",
"tslib": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
}
}