-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.46 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
{
"name": "git-hook-creator",
"version": "1.2.0",
"description": "Git hook creator",
"license": "MIT",
"homepage": "https://github.com/hotaydev/git-hook-creator",
"repository": {
"type": "git",
"url": "https://github.com/hotaydev/git-hook-creator.git",
"directory": "app"
},
"bugs": {
"url": "https://github.com/hotaydev/git-hook-creator/issues"
},
"author": "TaylorHo <taylor@hotay.dev>",
"contributors": [
"TaylorHo <taylor@hotay.dev>",
"Enzo Moraes <enzomoraes12@hotmail.com>"
],
"engines": {
"node": ">=16"
},
"scripts": {
"format": "npx @biomejs/biome check --write ./src/",
"prepare": "git init && git config --local core.hooksPath .hooks/",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"build": "tsc",
"dev": "ts-node src/index.ts"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"yargs": "^17.7.2"
},
"files": [
"dist/",
"LICENSE",
"README.md",
"package.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"create-hook": "dist/index.js"
},
"keywords": [
"git-hooks",
"git",
"hooks",
"cli",
"dev-tool"
],
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.8.1",
"@types/yargs": "^17.0.33",
"semantic-release": "^24.2.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}