-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.31 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.31 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
{
"name": "opencode-mission-control",
"version": "0.1.0",
"description": "OpenCode plugin for parallel AI coding sessions in isolated git worktrees",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"files": ["dist"],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target bun",
"test": "bun test",
"release": "semantic-release",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@opencode-ai/plugin": "^1.0.85",
"@opencode-ai/sdk": "^1.1.53",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/bun": "latest",
"semantic-release": "^25.0.3",
"typescript": "^5.0.0"
},
"author": "Nigel Bazzeghin <nbazzeghin@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/nigel-dev/opencode-mission-control#readme",
"bugs": {
"url": "https://github.com/nigel-dev/opencode-mission-control/issues"
},
"keywords": [
"opencode",
"opencode-plugin",
"worktree",
"tmux",
"parallel",
"ai-coding",
"git"
],
"repository": {
"type": "git",
"url": "https://github.com/nigel-dev/opencode-mission-control"
}
}