-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 810 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 810 Bytes
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
{
"name": "wechat-bot",
"version": "1.0.0",
"description": "微信机器人",
"main": "index.js",
"engines": {
"node": "12"
},
"scripts": {
"dev": "ts-node src/main.ts",
"build": "tsc",
"start": "node dist/main.js",
"test": "echo Hello WeChat Bot!"
},
"keywords": [
"微信",
"机器人"
],
"author": "fangmuke",
"license": "MIT",
"dependencies": {
"@types/config": "^0.0.36",
"@types/lodash": "^4.14.165",
"config": "^3.3.2",
"lodash": "^4.17.20",
"wechaty": "^0.48.10",
"wechaty-plugin-contrib": "^0.14.15",
"wechaty-puppet": "^0.32.3",
"wechaty-puppet-padlocal": "^0.1.3"
},
"devDependencies": {
"@chatie/tsconfig": "^0.13.0",
"ts-loader": "^8.0.11",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}