-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.52 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "gbkill",
"version": "0.0.1-beta.6",
"description": "🤡 Delete git branches in batches 🤡",
"exports": "./lib/index.js",
"type": "module",
"bin": {
"gbkill": "lib/index.js"
},
"engines": {
"node": ">=16.20.0"
},
"author": "AKclown",
"repository": {
"type": "git",
"url": "git+https://github.com/AKclown/gbkill.git"
},
"license": "MIT",
"keywords": [
"cli",
"git",
"npm",
"clean",
"tool",
"delete"
],
"files": [
"lib"
],
"scripts": {
"build": "pnpm run clean:build && npx tsc",
"dev": "pnpm run clean:build && npx tsc --watch",
"clean:build": "node --no-warnings=ExperimentalWarning --loader ts-node/esm ./scripts/clean-build.ts",
"commit": "git cz",
"lint-staged": "lint-staged",
"commitlint": "commitlint",
"lint": "pnpm run lint:es && pnpm run lint:prettier",
"lint:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache",
"lint:prettier": "prettier --list-different \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"fix": "pnpm run fix:es && pnpm run fix:prettier ",
"fix:es": "eslint --ext .js,.jsx,.ts,.tsx ./ --cache --fix",
"fix:prettier": "prettier --write \"**/*.{css,less,js,jsx,ts,tsx,json,yml,yaml,md}\"",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"dependencies": {
"ansi-escapes": "^6.2.0",
"axios": "^1.6.7",
"colors": "^1.4.0",
"commander": "^11.1.0",
"downgrade-root": "^2.0.0",
"figlet": "^1.7.0",
"ink": "^4.4.1",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"inquirer": "^8.2.6",
"react": "^18.2.0",
"semver": "^7.5.4",
"simple-git": "^3.22.0",
"sudo-block": "^5.0.0",
"url-join": "^5.0.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/figlet": "^1.5.8",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.10",
"@types/react": "^18.2.48",
"@types/semver": "^7.5.6",
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.7",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}