-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.09 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.09 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
{
"name": "agent-ssh-cli",
"version": "0.3.1",
"description": "基于 CLI 的 SSH 代理工具,按 ssh-mcp-server 的能力一一映射",
"type": "module",
"engines": {
"node": ">=18",
"npm": ">=8"
},
"repository": {
"type": "git",
"url": "https://github.com/sleepinginsummer/agent-ssh-cli"
},
"files": [
"bin/",
"example.config.json",
"README.md"
],
"bin": {
"agentsshcli": "bin/agentsshcli.js"
},
"scripts": {
"test": "node --check bin/agentsshcli.js && cargo test --manifest-path native/Cargo.toml",
"build:native": "cargo build --release --manifest-path native/Cargo.toml",
"test:native": "cargo test --manifest-path native/Cargo.toml",
"build:native-bin": "node scripts/build-native-bin.js",
"build:native-package": "npm run build:native-bin && node scripts/build-native-package.js"
},
"optionalDependencies": {
"@agent-ssh-cli/darwin-arm64": "0.3.1",
"@agent-ssh-cli/darwin-x64": "0.3.1",
"@agent-ssh-cli/linux-arm64": "0.3.1",
"@agent-ssh-cli/linux-x64": "0.3.1",
"@agent-ssh-cli/win32-x64": "0.3.1"
}
}