-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.42 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.42 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
{
"name": "wt-manager",
"version": "1.7.2",
"description": "CLI tool for managing Git worktrees efficiently with GitHub integration",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"wt": "dist/cli.js"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/daviddurika/git-worktree-manager.git"
},
"bugs": {
"url": "https://github.com/daviddurika/git-worktree-manager/issues"
},
"homepage": "https://github.com/daviddurika/git-worktree-manager#readme",
"scripts": {
"test": "bun test",
"build": "bun build ./src/cli.ts --outdir=dist --target=bun",
"build:binaries": "bun run scripts/build-binaries.ts",
"dev": "bun --watch src/cli.ts",
"typecheck": "tsc --noEmit",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"prepublishOnly": "bun run build",
"post-worktree-created": "bun install"
},
"keywords": [
"git",
"worktree",
"cli",
"github",
"developer-tools"
],
"author": "David Durika",
"license": "MIT",
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^12.1.0",
"octokit": "^4.0.2",
"picocolors": "^1.1.1",
"zod": "^4.3.4"
},
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@types/bun": "^1.1.14",
"typescript": "^5.7.2"
}
}