-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.38 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.38 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
{
"name": "opencode-copilot-delegate",
"version": "0.12.0",
"description": "OpenCode plugin that delegates tasks to GitHub Copilot CLI as background subprocesses",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./plugin": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tui": {
"types": "./dist/tui/index.d.ts",
"import": "./dist/tui/index.js"
}
},
"oc-plugin": [
"server",
"tui"
],
"files": [
"dist",
"src/tui",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"keywords": [
"opencode",
"opencode-plugin",
"copilot",
"github-copilot",
"agent",
"delegation"
],
"license": "MIT",
"author": "Marcus R. Brown <git@mrbro.dev> (https://mrbro.dev)",
"homepage": "https://github.com/marcusrbrown/opencode-copilot-delegate",
"repository": {
"type": "git",
"url": "https://github.com/marcusrbrown/opencode-copilot-delegate.git"
},
"bugs": {
"url": "https://github.com/marcusrbrown/opencode-copilot-delegate/issues"
},
"engines": {
"node": ">=24"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.41"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@changesets/cli": "2.31.0",
"@opencode-ai/plugin": "1.15.5",
"@types/babel__core": "7.20.5",
"@types/bun": "1.3.14",
"@types/node": "24.12.4",
"rimraf": "6.1.3",
"typescript": "6.0.3"
},
"scripts": {
"clean": "rimraf dist",
"build": "bun run clean && bun scripts/build.ts && tsc --emitDeclarationOnly --noEmit false",
"typecheck": "tsc --noEmit",
"test": "bun test",
"test:unit": "bun test tests/*.test.ts",
"test:tui": "bun test --preload @opentui/solid/preload src/tui/__tests__/*.test.ts src/tui/__tests__/*.test.tsx",
"test:integration": "bun test tests/integration/",
"lint": "biome check .",
"fix": "biome check . --write",
"prepublishOnly": "bun run build",
"version-changesets": "changeset version && bun install --lockfile-only",
"publish-changesets": "bun run build && changeset publish"
},
"dependencies": {
"@opentui/core": "0.2.6",
"@opentui/solid": "0.2.6",
"fkill": "10.0.3",
"solid-js": "1.9.13",
"zod": "^4.3.0"
},
"overrides": {
"zod": "^4.3.0"
}
}