-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.32 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
{
"name": "chatbot-webhook-client",
"version": "1.1.1",
"description": "Webhook calls of custom BOT that support DingTalk, Lark and WeCom",
"main": "lib/main.js",
"author": "northwang <[email protected]>",
"license": "MIT",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"package": "ncc build --source-map --license licenses.txt",
"build": "rimraf ./dist && pnpm format && tsc && pnpm package",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"push-with-tags": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/northwang-personal/chatbot-webhook-client.git"
},
"keywords": [
"actions",
"webhook",
"DingTalk",
"Lark",
"WeCom",
"BOT"
],
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"request": "2.88.2"
},
"devDependencies": {
"@types/node": "18.11.0",
"@types/request": "2.48.8",
"@vercel/ncc": "0.31.1",
"jest": "27.2.5",
"js-yaml": "4.1.0",
"prettier": "2.5.1",
"rimraf": "4.1.2",
"standard-version": "9.5.0",
"typescript": "4.4.4"
}
}