-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.7 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
{
"name": "@davidsneighbour/release-config",
"description": "Release script configuration for @davidsneighbour's projects",
"version": "2024.4.12",
"license": "MIT",
"repository": "davidsneighbour/configurations",
"author": "Patrick Kollitsch <[email protected]> (https://davids-neighbour.com)",
"bugs": "https://github.com/davidsneighbour/configurations/issues",
"homepage": "https://github.com/davidsneighbour/configurations/tree/main/packages/release-config",
"dependencies": {
"@davidsneighbour/tools": "^2024.4.12",
"commit-and-tag-version": "12.5.0",
"simple-git-hooks": "^2.11.1"
},
"scripts": {
"fixpack": "fixpack",
"release": "wireit",
"release:major": "wireit",
"release:minor": "wireit",
"release:patch": "wireit"
},
"wireit": {
"release:major": {
"command": "commit-and-tag-version --release-as major --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" && ./bin/repo/hooks/postrelease"
},
"release:minor": {
"command": "commit-and-tag-version --release-as minor --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" && ./bin/repo/hooks/postrelease"
},
"release:patch": {
"command": "commit-and-tag-version --release-as patch --sign -a -t \"v\" --releaseCommitMessageFormat \"chore(release): v{{currentTag}}\" && ./bin/repo/hooks/postrelease"
},
"release": {
"dependencies": [
"release:patch"
]
},
"postrelease": {
"command": "./bin/repo/hooks/postrelease"
}
},
"main": "index.js",
"engines": {
"node": ">=20.18.0",
"npm": ">=10.3.0"
},
"gitHead": "515736c9b5186fe57ad4e73dbbf6915b76641277"
}