forked from kdcokenny/opencode-worktree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.79 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.79 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
{
"name": "@rocket-sensei/opencode-worktree",
"module": "index.ts",
"version": "0.1.0",
"description": "OpenCode plugin for automated git worktree sessions",
"author": "Rocket-Sensei",
"keywords": [
"opencode",
"opencode-plugin",
"git",
"worktree",
"automation",
"bun"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Rocket-Sensei/opencode-worktree.git"
},
"bugs": {
"url": "https://github.com/Rocket-Sensei/opencode-worktree/issues"
},
"homepage": "https://github.com/Rocket-Sensei/opencode-worktree#readme",
"files": [
"index.ts",
"src",
"README.md",
"LICENSE"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"exports": {
".": "./index.ts",
"./*": "./src/*.ts",
"./*/*": "./src/*/*.ts",
"./*/*/*": "./src/*/*/*.ts"
},
"scripts": {
"typecheck": "tsc --noEmit",
"unittest": "bun test",
"test:all": "bun unittest",
"build:prod": "bun build src/plugin/worktree.ts --outdir dist --target bun --external @opencode-ai/plugin --external @opencode-ai/sdk --external bun:sqlite --external zod --external jsonc-parser",
"build": "bun run build:prod",
"prepack": "bun run build:prod",
"clean": "rm -rf dist coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome check --formatter-enabled=true --linter-enabled=false .",
"format:fix": "biome check --formatter-enabled=true --linter-enabled=false --write .",
"format:check": "biome check --formatter-enabled=true --linter-enabled=false ."
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@types/bun": "^1.3.8",
"typescript": "^5.9.3"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@opencode-ai/plugin": "^1.2.25",
"@opencode-ai/sdk": "^1.2.25",
"jsonc-parser": "^3.3.1",
"zod": "^4.3.6"
}
}