-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1 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
44
45
46
47
48
49
50
{
"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",
"packageManager": "pnpm@10.33.0",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Netail/webhook-notifier.git"
},
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "rsbuild build",
"format-n-lint": "biome check",
"format-n-lint:fix": "biome check --write",
"prepare": "husky || true"
},
"dependencies": {
"@actions/core": "^3.0.0",
"jimp": "^1.6.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@rsbuild/core": "^1.7.5",
"@types/node": "^24.12.2",
"husky": "^9.1.7",
"typescript": "^6.0.2"
},
"pnpm": {
"overrides": {
"simple-xml-to-json": "1.2.4"
}
}
}