-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
{
"name": "gh-boscaiolo",
"version": "0.1.0",
"description": "GitHub CLI extension to clean up git worktrees",
"type": "module",
"bin": {
"gh-boscaiolo": "./dist/cli.js"
},
"main": "./dist/cli.js",
"files": [
"dist",
"bin",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"build:binary": "bun build --compile ./src/cli.tsx --outfile=dist/gh-boscaiolo",
"build:binary:darwin-arm64": "bun build --compile --target=bun-darwin-arm64 ./src/cli.tsx --outfile=dist/gh-boscaiolo-darwin-arm64",
"build:binary:darwin-amd64": "bun build --compile --target=bun-darwin-x64 ./src/cli.tsx --outfile=dist/gh-boscaiolo-darwin-amd64",
"build:binary:linux-amd64": "bun build --compile --target=bun-linux-x64 ./src/cli.tsx --outfile=dist/gh-boscaiolo-linux-amd64",
"build:binary:linux-arm64": "bun build --compile --target=bun-linux-arm64 ./src/cli.tsx --outfile=dist/gh-boscaiolo-linux-arm64",
"build:binary:windows-amd64": "bun build --compile --target=bun-windows-x64 ./src/cli.tsx --outfile=dist/gh-boscaiolo-windows-amd64.exe",
"test": "vitest",
"test:e2e": "vitest run",
"test:watch": "vitest watch",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"check-package-age": "node scripts/check-package-age.js",
"security-check": "node scripts/check-package-age.js"
},
"keywords": [
"gh-extension",
"git",
"worktree",
"cleanup",
"cli"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"date-fns": "^4.1.0",
"ink": "^6.6.0",
"ink-spinner": "^5.0.0",
"meow": "^14.0.0",
"react": "^19.2.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"node-pty",
"esbuild"
]
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/react": "^19.2.7",
"@types/tmp": "^0.2.6",
"@vitest/ui": "^2.1.9",
"execa": "^9.6.1",
"node-pty": "^1.1.0",
"react-devtools-core": "^7.0.1",
"strip-ansi": "^7.1.2",
"tmp": "^0.2.5",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
}
}