-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.04 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.04 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
75
76
77
78
79
80
81
{
"name": "worktree-remove",
"version": "1.0.0",
"description": "Safely remove Git worktrees and their directories, handling uncommitted changes and orphaned folders.",
"author": "Łukasz Jerciński",
"license": "MIT",
"scripts": {
"prepack": "pnpm run rebuild",
"prepare": "git config core.hooksPath .githooks",
"build": "tsc -p tsconfig.app.json",
"clean": "rm -rf dist *.tsbuildinfo",
"format": "prettier --write .",
"format:check": "prettier --check .",
"fta": "fta-check --threshold 55",
"knip": "knip",
"lint": "eslint",
"rebuild": "pnpm run clean && pnpm run build",
"start": "pnpm run rebuild && node bin/worktree-remove",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"typecheck": "tsc -b --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jercik/worktree-remove.git"
},
"homepage": "https://github.com/Jercik/worktree-remove#readme",
"bugs": {
"url": "https://github.com/Jercik/worktree-remove/issues"
},
"type": "module",
"bin": {
"worktree-remove": "bin/worktree-remove"
},
"files": [
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"git",
"worktree",
"git-worktree",
"remove",
"delete",
"safe-delete",
"cli",
"cleanup",
"trash",
"workflow",
"branch"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=22.19.0"
},
"dependencies": {
"@commander-js/extra-typings": "^14.0.0",
"@inquirer/prompts": "^8.4.2",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"p-limit": "^7.3.0",
"trash": "^10.1.1"
},
"devDependencies": {
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.1",
"eslint-config-axkit": "^1.7.0",
"fta-check": "^1.5.2",
"fta-cli": "^3.0.0",
"knip": "^6.5.0",
"prettier": "3.8.3",
"semantic-release": "^25.0.3",
"typescript": "^6.0.3",
"vitest": "^4.1.4"
}
}