-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1011 Bytes
/
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": "webhook-notifier",
"description": "GitHub Action to send messages to different webhooks",
"version": "1.0.0",
"private": false,
"keywords": [
"actions",
"webhook",
"notifier",
"notification",
"node",
"discord",
"teams",
"slack"
],
"homepage": "https://github.com/Netail/webhook-notifier#readme",
"license": "MIT",
"author": "Netail",
"main": "lib/index.js",
"packageManager": "yarn@1.22.22",
"repository": {
"type": "git",
"url": "git+https://github.com/Netail/webhook-notifier.git"
},
"scripts": {
"build": "tsc",
"build:dist": "yarn build && ncc build -o dist --source-map",
"format-n-lint": "biome check",
"format-n-lint:fix": "biome check --write",
"precommit": "yarn format-n-lint:fix && yarn build:dist",
"prepare": "husky || true"
},
"dependencies": {
"@actions/core": "^1.11.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.2",
"@vercel/ncc": "^0.38.3",
"husky": "^9.1.7",
"typescript": "^5.7.2"
}
}