-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 885 Bytes
/
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
{
"name": "@bhaireshm/gencl",
"version": "0.1.4",
"description": "A simple and efficient tool to generate a `CHANGELOG.md` file for your Git repository",
"main": "./dist/src/index.js",
"bin": {
"gencl": "./dist/src/cli/index.js",
"generate-changelog": "./dist/src/cli/index.js"
},
"scripts": {
"start": "pnpm build && node ./dist/src/cli/index.js",
"build": "sh ./src/scripts/build.sh",
"watch": "pnpm build && tsc --build --watch",
"prepublishOnly": "pnpm build"
},
"dependencies": {
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/yargs": "^17.0.32"
},
"keywords": [
"Changelog",
"Generator"
],
"repository": {
"type": "git",
"url": "https://github.com/bhaireshm/generate-changelog.git"
},
"author": "Bhairesh M <bhairesh@arithaconsulting.com>",
"license": "ISC"
}