-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "webhook-chatbot",
"version": "1.1.4",
"description": "群聊机器人消息推送,支持钉钉和企业微信",
"main": "./lib/index.cjs.js",
"module": "./lib/index.esm.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "rollup -c",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run lint && npm run build",
"preversion": "npm run lint"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"form-data": "^4.0.0",
"prettier": "^2.6.2",
"rollup": "^2.70.1",
"rollup-plugin-delete": "^2.0.0",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.6.3"
},
"files": [
"lib"
],
"homepage": "https://github.com/starryeve/webhook-chatbot",
"repository": {
"type": "git",
"url": "https://github.com/starryeve/webhook-chatbot.git"
},
"bugs": {
"url": "https://github.com/starryeve/webhook-chatbot/issues"
},
"keywords": [
"群聊机器人",
"Webhook机器人",
"钉钉机器人",
"企业微信机器人"
],
"author": "starryeve",
"license": "MIT"
}