-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (40 loc) · 1.15 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
{
"name": "job-position-wechat-bot",
"version": "1.0.0",
"author": "Jackson Chen",
"license": "MIT",
"scripts": {
"start": "npx ts-node index.ts",
"build": "tsc",
"start:prod": "npm run build && node build/index.js",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"jobWxBotConfig": {
"maxDays": 3,
"jobsPerMessage": 3,
"minsCheckInterval": 5,
"rooms": [
"测试多个群", "测试群"
],
"googleSheet": true
},
"dependencies": {
"@types/qrcode-terminal": "^0.12.2",
"@typescript-eslint/eslint-plugin": "^8.2.0",
"@typescript-eslint/parser": "^8.2.0",
"axios": "^1.7.5",
"cron": "^3.1.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"google-auth-library": "^9.14.0",
"google-spreadsheet": "^4.1.3",
"node-cron": "^3.0.3",
"prettier": "^3.3.3",
"qrcode-terminal": "^0.12.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"wechaty": "^1.20.2"
}
}