-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.15 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.15 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
{
"name": "opencode-worktree",
"version": "0.4.1",
"private": false,
"type": "module",
"description": "TUI for managing git worktrees with opencode integration.",
"author": "arturosdg",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/arturosdg/opencode-worktree.git"
},
"bugs": {
"url": "https://github.com/arturosdg/opencode-worktree/issues"
},
"homepage": "https://github.com/arturosdg/opencode-worktree#readme",
"keywords": [
"git",
"worktree",
"tui",
"opencode",
"cli"
],
"bin": {
"opencode-worktree": "bin/opencode-worktree"
},
"scripts": {
"dev": "bun src/cli.ts",
"build:single": "bun run script/build.ts --single",
"build:all": "bun run script/build.ts",
"release:publish": "bun run script/publish.ts",
"postinstall": "node ./script/postinstall.mjs"
},
"files": [
"bin",
"script",
"src",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"dependencies": {
"@opentui/core": "^0.1.75"
},
"devDependencies": {
"@types/bun": "^1.2.0",
"@types/node": "^24.2.0",
"typescript": "^5.9.3"
}
}