-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"name": "opencode-pilot",
"version": "0.28.0",
"type": "module",
"main": "plugin/index.js",
"description": "Automation daemon for OpenCode - polls for work and spawns sessions",
"repository": {
"type": "git",
"url": "https://github.com/athal7/opencode-pilot.git"
},
"publishConfig": {
"provenance": true,
"access": "public"
},
"keywords": [
"opencode",
"automation",
"polling",
"github",
"linear"
],
"author": "Andrew Thal <467872+athal7@users.noreply.github.com>",
"license": "MIT",
"bin": {
"opencode-pilot": "./bin/opencode-pilot"
},
"scripts": {
"test": "node --test test/unit/*.test.js",
"test:integration": "node --test test/integration/*.test.js",
"test:all": "node --test test/unit/*.test.js test/integration/*.test.js"
},
"devDependencies": {
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.6",
"@semantic-release/npm": "^13.1.0",
"semantic-release": "^25.0.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"yaml": "^2.8.2"
}
}