-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@four-bytes/opencode-plugin-lib",
"version": "0.7.1",
"description": "Shared utilities for opencode plugins — toast wrapper, helpers",
"license": "Apache-2.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "bun run scripts/build.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"opencode-plugin",
"four-bytes"
],
"devDependencies": {
"@opencode-ai/plugin": "^1.16.0",
"bun-types": "^1.3.0",
"typescript": "^6.0.3"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.16.0",
"@opentui/solid": "^0.4.1",
"solid-js": "^1.9.13"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./tui": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
},
"./tui-components": {
"import": "./dist/tui-components/index.js",
"types": "./dist/tui-components/index.d.ts"
}
},
"files": [
"dist/",
"src/",
"README.md"
]
}