-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.96 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
{
"name": "blackbird-opencode",
"version": "0.3.0",
"description": "Deliver durable Blackbird messages into OpenCode V2 sessions.",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": "./dist/index.js",
"./rpc": "./dist/rpc.js",
"./tui": "./dist/tui.js"
},
"files": [
"dist",
"server.ts",
"tui.tsx",
"rpc.ts",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "bun scripts/build.mjs",
"check": "tsc --noEmit && eslint src test",
"test": "vitest run",
"test:tui": "npm run build && opencode-drive run scripts/tui-drive.ts",
"test:pack": "npm run build && node scripts/pack-test.mjs",
"prepack": "npm run build",
"gates": "npm run check && npm test && npm run test:pack && npm audit --audit-level=high"
},
"keywords": [
"blackbird",
"opencode",
"plugin",
"agent"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/phall1/blackbird.git",
"directory": "packages/opencode-plugin"
},
"bugs": {
"url": "https://github.com/phall1/blackbird/issues"
},
"homepage": "https://github.com/phall1/blackbird/tree/main/packages/opencode-plugin#readme",
"dependencies": {
"@opencode-ai/plugin": "1.18.26",
"@opencode/plugin": "0.0.0-beta-19365",
"@opencode/schema": "0.0.0-beta-19365",
"effect": "4.0.0-rc.112",
"zod": "4.3.6"
},
"peerDependencies": {
"@opentui/core": "0.5.11",
"@opentui/solid": "0.5.11",
"solid-js": "1.9.12"
},
"devDependencies": {
"@opencode/theme": "0.0.0-beta-19365",
"opencode-drive": "2.1.0",
"@eslint/js": "9.33.0",
"@types/node": "24.2.1",
"eslint": "9.33.0",
"typescript": "5.9.2",
"typescript-eslint": "8.39.1",
"vitest": "3.2.7"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}