-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.16 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
{
"name": "opencode-remote-code",
"version": "0.1.0",
"description": "OpenCode plugin for remote machine control over SSH",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./server": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"postbuild": "node scripts/postbuild.cjs",
"dev": "tsc --watch",
"lint": "tsc --noEmit"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.15.0"
},
"dependencies": {
"diff": "^9.0.0",
"ssh2": "^1.17.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ssh2": "^1.15.5",
"typescript": "^5.4.0",
"zod": "^3.22.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zz6zz666/opencode-remote-code.git"
},
"bugs": {
"url": "https://github.com/zz6zz666/opencode-remote-code/issues"
},
"homepage": "https://github.com/zz6zz666/opencode-remote-code#readme",
"license": "MIT",
"keywords": [
"opencode",
"plugin",
"ssh",
"remote",
"agent"
],
"dependencies": {
"ssh2": "^1.17.0"
}
}