-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
46
47
48
49
50
51
52
53
{
"name": "@visualon/gitea-releaser",
"version": "0.0.0-PLACEHOLDER",
"keywords": [
"gitea",
"forgejo",
"jenkins",
"releaser",
"conventional-commits",
"conventional-changelog"
],
"bugs": {
"url": "https://github.com/visualon/gitea-releaser/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/visualon/gitea-releaser.git"
},
"license": "MIT",
"author": "VisualOn GmbH <info@visualon.de>",
"contributors": [
"Michael Kriese <michael.kriese@visualon.de>"
],
"type": "module",
"bin": "./src/index.js",
"files": [
"src"
],
"scripts": {
"lint:prettier": "prettier --cache --check --ignore-unknown .",
"prepare": "husky",
"prettier:fix": "prettier --cache --write --ignore-unknown .",
"start": "node src/index.js"
},
"dependencies": {
"clipanion": "4.0.0-rc.4",
"conventional-changelog-conventionalcommits": "8.0.0",
"conventional-changelog-core": "8.0.0"
},
"devDependencies": {
"@types/conventional-changelog-core": "4.2.8",
"husky": "9.1.7",
"lint-staged": "15.3.0",
"markdownlint-cli2": "0.17.1",
"prettier": "3.4.2",
"prettier-plugin-packagejson": "2.5.6"
},
"packageManager": "pnpm@9.15.2",
"engines": {
"node": "^18.12.0 || ^20.9.0 || ^22.11.0",
"pnpm": "^9.0.0"
}
}