-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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": "release-it-webhook",
"version": "0.0.6",
"description": "Webhook plugin for release-it",
"repository": "https://github.com/pchalupa/release-it-webhook",
"bugs": {
"url": "https://github.com/pchalupa/release-it-webhook/issues"
},
"keywords": ["release", "release-it", "release-it-plugin", "webhook"],
"author": {
"name": "Petr Chalupa",
"email": "chalupa.petr93@gmail.com",
"url": "https://github.com/pchalupa"
},
"license": "MIT",
"homepage": "https://github.com/pchalupa/release-it-webhook#readme",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"files": ["./index.js"],
"scripts": {
"dev": "tsup-node --watch",
"lint": "biome check",
"format": "biome format",
"ts:check": "tsc --noEmit",
"build": "tsup-node",
"release": "release-it"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^25.0.2",
"release-it": "^19.0.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3"
},
"peerDependencies": {
"release-it": ">=19"
},
"engines": {
"node": ">=20"
}
}