-
Notifications
You must be signed in to change notification settings - Fork 284
/
package.json
82 lines (82 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "wechatbot-webhook",
"version": "2.8.2",
"description": "一个小小的微信机器人webhook,帮你抹平了很多自己开发的障碍,基于 http 请求",
"keywords": [
"wechat",
"bot",
"webhook",
"wechaty",
"http-service"
],
"main": "main.js",
"scripts": {
"prestart": "node ./scripts/preStart",
"start": "node main",
"build:cli": "pnpm --filter wechatbot-webhook run build"
},
"engines": {
"node": ">=18.14.1"
},
"author": {
"name": "danni-cool",
"email": "contact@danni.cool"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danni-cool/wechatbot-webhook.git"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"./scripts/tsc-lint.sh",
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"license": "MIT",
"dependencies": {
"@hono/node-server": "^1.3.3",
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"file-box": "1.4.15",
"form-data": "^4.0.0",
"gerror": "^1.0.16",
"hono": "^3.11.11",
"lodash.clonedeep": "^4.5.0",
"log4js": "^6.9.1",
"mime": "^3.0.0",
"node-fetch-commonjs": "^3.3.2",
"qrcode-terminal": "^0.12.0",
"wechaty": "^1.20.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^18.1.0",
"@types/eslint": "^8.56.0",
"@types/mime": "^3.0.4",
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
"husky": "^8.0.3",
"i": "^0.3.7",
"npm": "^10.5.0",
"prettier": "^3.1.1",
"tsc-files": "^1.1.4",
"typescript": "^5.3.3",
"wechaty-puppet-mock": "^1.18.2"
},
"pnpm": {
"patchedDependencies": {
"wechat4u@0.7.14": "patches/wechat4u@0.7.14.patch",
"wechaty-puppet-wechat4u@1.14.13": "patches/wechaty-puppet-wechat4u@1.14.13.patch",
"wechaty-puppet@1.20.2": "patches/wechaty-puppet@1.20.2.patch"
}
}
}