-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.74 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
{
"name": "git-switch-branch",
"version": "0.7.0",
"description": "Switch or prune recent GIT branches blazingly fast",
"keywords": [
"git",
"recent",
"branch",
"prune",
"switch",
"checkout",
"builds",
"pipelines",
"bitbucket",
"atlassian"
],
"type": "module",
"bin": {
"git-switch-branch": "cli/git-switch-branch.ts",
"git-prune-branches": "cli/git-prune-branches.ts",
"git-builds": "cli/git-builds.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/macku/git-switch-branch.git"
},
"author": {
"name": "Maciej Adamczak",
"email": "me@maciejadamczak.net"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"dependencies": {
"@inquirer/core": "^10.1.9",
"@inquirer/prompts": "^7.4.0",
"debug": "^4.4.0",
"file-system-cache": "^2.0.0",
"find-cache-dir": "^5.0.0",
"inquirer": "^12.5.0",
"zx": "^8.4.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"husky": "^9.1.7",
"import-sort-style-module": "^6.0.0",
"prettier": "^3.5.3",
"prettier-plugin-import-sort": "^0.0.7",
"pretty-quick": "^4.1.1",
"typescript": "^5.8.2"
},
"scripts": {
"prepare": "husky install",
"typecheck": "tsc --noEmit",
"code-style": "npm run prettier-check",
"prettier-check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\""
},
"engines": {
"node": ">=22.6.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module"
}
}
}