-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 KB
/
package.json
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
{
"name": "gbu",
"version": "0.0.4",
"description": "Manage your local git branches with ease.",
"type": "module",
"engines": {
"node": ">=20.17.0"
},
"bin": {
"gbu": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"dev": "npm run build -- --watch",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint . --fix",
"format": "prettier --write .",
"build": "esbuild src/index.ts --bundle --minify --format=esm --platform=node --target=node18 --outdir=dist --packages=external",
"release": "npm run build && np",
"prepare": "husky",
"typecheck": "tsc -p tsconfig.json --skipLibCheck --noEmit"
},
"dependencies": {
"@inquirer/core": "^9.1.0",
"@inquirer/figures": "^1.0.6",
"ansi-escapes": "^7.0.0",
"simple-git": "^3.26.0",
"yoctocolors": "^2.1.1"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"esbuild": "^0.23.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"np": "^10.0.7",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.4.0",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.0.5"
},
"keywords": [
"git",
"cli",
"branch",
"branches",
"delete",
"rename"
],
"repository": {
"type": "git",
"url": "https://github.com/jv-vogler/git-branch-utils"
},
"author": "João Vogler",
"license": "MIT"
}