-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.6 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.6 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
98
99
100
101
102
103
104
{
"name": "opencode-pair",
"version": "0.1.0",
"description": "OpenCode harness with a five-agent topology: mrrobot, eliot, tyrell, claude, turing.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opencode-pair": "bin/opencode-pair.js"
},
"files": [
"dist",
"bin",
"vendor",
"examples",
"README.md"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target bun --format esm && bun build src/cli.ts --outdir dist --target bun --format esm && tsc --emitDeclarationOnly",
"clean": "rm -rf dist",
"pipe": "rm -rf /home/cemalturkcan/.config/openai-image-gen-mcp /home/cemalturkcan/.config/opencode && bun run build && bun run dist/cli.js install",
"prepare": "bun run build",
"typecheck": "tsc --noEmit",
"test": "bun test"
},
"keywords": [
"opencode",
"plugin",
"agent",
"harness",
"orchestration",
"pair-programming"
],
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "refactor",
"release": "patch"
},
{
"type": "perf",
"release": "patch"
},
{
"type": "test",
"release": "patch"
},
{
"type": "chore",
"scope": "deps",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/github",
{
"assets": [
{
"path": "release-binaries/opencode-pair-linux-x64",
"label": "CLI Binary (Linux x64)"
},
{
"path": "release-binaries/opencode-pair-linux-arm64",
"label": "CLI Binary (Linux ARM64)"
},
{
"path": "release-binaries/opencode-pair-darwin-x64",
"label": "CLI Binary (macOS x64)"
},
{
"path": "release-binaries/opencode-pair-darwin-arm64",
"label": "CLI Binary (macOS ARM64)"
}
]
}
]
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cemalturkcan/opencode-pair.git"
},
"license": "MIT",
"dependencies": {
"@opencode-ai/plugin": "latest",
"jsonc-parser": "^3.3.1",
"zod": "^4.1.8"
},
"devDependencies": {
"bun-types": "1.3.6",
"typescript": "^5.7.3"
}
}