-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 823 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 823 Bytes
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
{
"name": "worktree-kit",
"version": "0.3.1",
"description": "CLI tool to simplify git-worktree workflow with automatic config file copying",
"type": "module",
"bin": {
"wt": "./dist/wt"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build ./src/index.ts --compile --outfile dist/wt",
"build:release": "bash scripts/build-release.sh",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome format . --write",
"test": "bun test",
"preview": "bash scripts/preview.sh",
"clean": "bash scripts/clean.sh"
},
"devDependencies": {
"@biomejs/biome": "^2.3.13",
"@types/bun": "latest",
"typescript": "^5"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"citty": "^0.2.0",
"picocolors": "^1.1.1",
"strip-json-comments": "^5.0.3",
"valibot": "^1.2.0"
}
}