-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 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
{
"name": "git-changelog-github-release",
"description": "Draft release in GitHub generated from template using git-changelog-lib",
"version": "1.0.0",
"author": "Tomas Bjerre <tomas.bjerre85@gmail.com> (https://github.com/tomasbjerre)",
"private": true,
"homepage": "https://github.com/tomasbjerre/git-changelog-github-release",
"repository": "https://github.com/tomasbjerre/git-changelog-github-release",
"bugs": {
"url": "https://github.com/tomasbjerre/git-changelog-github-release/issues"
},
"keywords": [
"actions",
"release",
"publishing"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=21"
},
"scripts": {
"build": "rm -rf dist && npm run prettier:write && npm run package && npm run copycli",
"copycli": "cp -v node_modules/git-changelog-command-line/build/libs/git-changelog-command-line-*.jar dist && rm dist/*javadoc* dist/*sources* && mv dist/*jar dist/cli.jar",
"prettier:write": "npx prettier --write .",
"prettier:check": "npx prettier --check .",
"package": "npx ncc build src/index.ts -o dist --source-map --license licenses.txt"
},
"license": "Apache 2",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"git-changelog-command-line": "^2.5.3"
},
"devDependencies": {
"@types/node": "^22.5.5",
"@vercel/ncc": "^0.38.1",
"prettier": "^3.3.3",
"prettier-eslint": "^16.3.0",
"typescript": "^5.6.2"
}
}