-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.61 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
54
55
56
57
58
{
"name": "release-it-webhook",
"version": "0.0.5",
"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": "[email protected]",
"url": "https://github.com/pchalupa"
},
"license": "MIT",
"homepage": "https://github.com/pchalupa/release-it-webhook#readme",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"files": [
"./index.js"
],
"scripts": {
"dev": "tsup-node --watch",
"lint": "eslint --ext .ts src",
"ts:check": "tsc --noEmit",
"build": "tsup-node",
"release": "release-it"
},
"devDependencies": {
"@release-it/conventional-changelog": "^9.0.0",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-typescript": "^2.0.0",
"eslint-plugin-prettier": "^5.1.2",
"prettier": "^3.1.1",
"release-it": "^17.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3"
},
"peerDependencies": {
"release-it": "15 - 17"
},
"engines": {
"node": ">=18"
}
}