-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "btw-opencode",
"version": "0.0.1",
"description": "Fork session and run prompts in background for OpenCode",
"type": "module",
"main": "dist/btw-opencode.js",
"exports": {
".": "./dist/btw-opencode.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outfile dist/btw-opencode.js --target node",
"dev": "bun build src/index.ts --outfile dist/btw-opencode.js --target node --watch",
"prepublishOnly": "bun run build"
},
"keywords": [
"opencode",
"plugin",
"btw",
"fork",
"background",
"session"
],
"author": "idc.btw",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aptdnfapt/btw-opencode.git"
},
"bugs": {
"url": "https://github.com/aptdnfapt/btw-opencode/issues"
},
"homepage": "https://github.com/aptdnfapt/btw-opencode#readme",
"devDependencies": {
"@opencode-ai/plugin": "latest",
"@types/node": "^25.5.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*"
}
}