-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.25 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
{
"name": "@pplante/opencode-worktrunk",
"version": "0.3.1",
"description": "OpenCode plugin for Worktrunk worktree management",
"keywords": [
"opencode",
"opencode-plugin",
"opencode worktree plugin",
"opencode worktrunk",
"opencode ai",
"slash-command",
"coding-agent",
"ai-agent",
"developer-tools",
"agent",
"tui"
],
"type": "module",
"exports": {
"./server": {
"import": "./dist/server.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf dist",
"build": "bun run clean && bun build ./src/worktrunk-wt.ts ./src/server.ts --outdir ./dist --target bun --external @opencode-ai/plugin --external @opencode/plugin",
"lint": "oxlint src/",
"pack:dry-run": "npm pack --dry-run",
"test": "bun test",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run test && bun run build"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.15.13"
},
"devDependencies": {
"@types/bun": "^1.3.13",
"typescript": "^7.0.2"
},
"engines": {
"opencode": ">=1.17.1"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@opencode/plugin": "^2.0.3"
}
}