-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.33 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.33 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
{
"name": "@sven1103/opencode-worktree-ui",
"version": "0.1.0",
"description": "OpenCode plugin for interactive worktree-based issue workflows with UI controls",
"type": "module",
"main": "./index.cjs",
"exports": {
".": {
"require": "./index.cjs",
"import": "./src/index.js",
"default": "./index.cjs"
},
"./server": {
"require": "./index.cjs",
"import": "./src/index.js",
"default": "./index.cjs"
}
},
"oc-plugin": [
"server"
],
"files": [
"index.cjs",
"src",
"skills",
"commands",
"schemas"
],
"keywords": [
"opencode",
"opencode-plugin",
"worktree",
"github",
"issue",
"workflow"
],
"license": "MIT",
"author": "Sven Fillinger",
"repository": {
"type": "git",
"url": "git+https://github.com/sven1103/opencode-worktree-ui.git"
},
"homepage": "https://github.com/sven1103/opencode-worktree-ui#readme",
"bugs": {
"url": "https://github.com/sven1103/opencode-worktree-ui/issues"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --test test/*.test.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "^1.3.0"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3"
}
}