-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.28 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": "im-robot",
"version": "1.0.0",
"description": "一款nodejs版微信机器人,群聊小助手",
"author": "osi <osindex@163.com>",
"website": "https://youngfan.top",
"license": "MIT",
"keywords": [
"微信机器人",
"微信小助手",
"微信群聊机器人",
"微信小秘书",
"微信每日说",
"wechaty",
"微信助手"
],
"main": "app.js",
"engines": {
"node": ">= 10"
},
"scripts": {
"initdb": "node initdb.js",
"start": "node app.js",
"prod": "cross-env NODE_ENV=production node initdb.js && pm2 start process.prod.json --no-daemon"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"crypto-js": "^4.0.0",
"dayjs": "^1.8.28",
"flyio": "^0.6.14",
"is-pr": "^1.1.0",
"knex": "^0.21.1",
"node-schedule": "^1.3.2",
"qrcode-terminal": "^0.12.0",
"redis": "^3.1.1",
"sqlite3": "^4.2.0",
"wechaty": "^0.39.25",
"wechaty-plugin-contrib": "^0.4.9",
"wechaty-puppet-padplus": "^0.6.3"
},
"devDependencies": {
"@chatie/eslint-config": "^0.6.17",
"@chatie/git-scripts": "^0.2.5",
"@chatie/tsconfig": "^0.6.1",
"check-node-version": "^3.2.0",
"cross-env": "^7.0.2"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}