-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.17 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.17 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
51
52
53
{
"name": "feishu-bot-webhook-action",
"version": "v1",
"description": "GitHub Action for sending notifications to Feishu/Lark bot via webhook",
"homepage": "https://github.com/XRSec/feishu-bot-webhook-action#readme",
"bugs": {
"url": "https://github.com/XRSec/feishu-bot-webhook-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XRSec/feishu-bot-webhook-action.git"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"action.yml",
"README.md"
],
"scripts": {
"build": "npx ncc build index.ts -o dist --source-map",
"release": "./scripts/release.sh",
"clean": "rm -rf dist",
"prebuild": "npm run clean"
},
"keywords": [
"github-action",
"bot",
"feishu",
"lark",
"webhook",
"notification",
"ci-cd",
"automation"
],
"author": "XRSec",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1",
"@types/node": "^20.12.7",
"ts-node": "^10.9.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"typescript": "^5.9.2"
}
}