-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.45 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": "dir-hunter",
"version": "1.0.8",
"description": "A simple directory command line tool to execute commands on directories",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"prepare": "husky install && tsc",
"check": "biome check --apply src/*",
"check:fix": "biome check --apply-unsafe src/*",
"prepublishOnly": "npm run build"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"lint-staged": {
"*.{ts,js,tsx,jsx}": [
"biome check --apply-unsafe"
]
},
"bin": {
"dh": "./dist/index.js"
},
"keywords": [
"directory",
"jump",
"command line",
"cli",
"terminal helper"
],
"homepage": "",
"author": "Developer27149",
"license": "MIT",
"dependencies": {
"@inquirer/confirm": "^3.1.8",
"@inquirer/select": "^2.3.2",
"commander": "^12.0.0",
"fdir": "^6.1.1",
"figlet": "^1.7.0",
"gradient-string": "^2.0.2",
"ignore": "^5.3.1",
"inquirer": "^8.2.6",
"inquirer-search-list": "^1.2.6",
"kleur": "^4.1.5"
},
"devDependencies": {
"@biomejs/biome": "1.7.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/figlet": "^1.5.8",
"@types/gradient-string": "^1.1.6",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.12.10",
"@types/picomatch": "^2.3.3",
"git-cz": "^4.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"typescript": "^5.4.5"
}
}