forked from hunghg255/github-actions-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "changeloggithub-actions",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "ncc build ./src/index.ts -o lib --minify",
"verify-commit": "verify-commit-msg",
"postinstall": "git-scm-hooks",
"changelog": "npx changeloggithub@latest --all true && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md'",
"release": "bumpp -r && npm run changelog && npm publish",
"lint": "npx oxlint@latest ."
},
"author": "hunghg255",
"license": "ISC",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.6",
"@types/node": "^20.6.0",
"@vercel/ncc": "^0.36.1",
"bumpp": "^9.2.0",
"git-scm-hooks": "^0.0.7",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"verify-commit-msg": "^0.0.10"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [],
"homepage": "https://github.com/hunghg255/changeloggithub-actions",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/changeloggithub-actions"
},
"bugs": {
"url": "https://github.com/hunghg255/changeloggithub-actions/issues"
}
}