-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.28 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.28 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": "@alecrust/workbox",
"version": "0.4.4",
"description": "Bun-first CLI for managing Git worktree sandboxes.",
"license": "MIT",
"type": "module",
"packageManager": "bun@1.3.14",
"repository": {
"type": "git",
"url": "git+https://github.com/AlecRust/workbox.git"
},
"homepage": "https://github.com/AlecRust/workbox#readme",
"bugs": {
"url": "https://github.com/AlecRust/workbox/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"src/**/*.ts",
"!src/**/*.test.ts",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"workbox": "src/cli.ts",
"wkb": "src/cli.ts"
},
"engines": {
"bun": "1.3.14"
},
"scripts": {
"prepare": "bun scripts/prepare.ts",
"test": "bun test",
"lint": "biome lint .",
"check:types": "tsc --noEmit",
"check:unused": "knip",
"check": "bun run lint && bun run check:types && bun run check:unused",
"format": "biome check --write ."
},
"dependencies": {
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.4.16",
"@tsconfig/bun": "^1.0.10",
"@types/bun": "^1.3.14",
"knip": "^6.15.0",
"lefthook": "^2.1.9",
"typescript": "^6.0.3"
},
"keywords": [
"git",
"worktree",
"cli",
"bun"
]
}