This repository was archived by the owner on Mar 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.71 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
69
70
71
72
73
74
{
"name": "@fnebenfuehr/worktree-cli",
"version": "1.5.0",
"description": "A modern CLI tool for managing git worktrees with ease",
"type": "module",
"main": "./dist/index.js",
"bin": {
"worktree": "dist/index.js"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target bun --minify",
"typecheck": "tsc --noEmit",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "bun run format && bun run typecheck",
"prepare": "lefthook install",
"prepublishOnly": "bun run build",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"keywords": [
"git",
"worktree",
"cli",
"workflow",
"development",
"branches",
"productivity"
],
"author": "Florian Nebenfuehr <[email protected]>",
"license": "MIT",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/fnebenfuehr"
},
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@clack/prompts": "^0.8.2",
"@modelcontextprotocol/sdk": "^1.20.1",
"commander": "^14.0.1",
"cosmiconfig": "^9.0.0",
"picocolors": "^1.1.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@changesets/cli": "^2.29.7",
"@types/bun": "latest",
"lefthook": "^1.13.6",
"typescript": "^5.6.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fnebenfuehr/worktree-cli.git"
},
"bugs": {
"url": "https://github.com/fnebenfuehr/worktree-cli/issues"
},
"homepage": "https://github.com/fnebenfuehr/worktree-cli#readme"
}