forked from wechaty/getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2 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
{
"name": "wechaty-getting-started",
"version": "0.10.7",
"description": "Wechaty conversational SDK getting start template & examples",
"main": "examples/ding-dong-bot.js",
"engines": {
"node": ">= 12"
},
"scripts": {
"lint": "eslint \"examples/*.ts\"",
"start": "ts-node examples/ding-dong-bot.ts",
"start:js": "node examples/ding-dong-bot.js",
"start:wechat:web": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-wechat npm start",
"start:wechat:padlocal": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-padlocal npm start",
"start:puppet:service": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-service npm start",
"start:whatsapp:web": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-whatsapp npm start",
"test": "npm run lint && npm run test:version && npm run test:smoke",
"test:smoke": "ts-node tests/smoke-testing.ts",
"test:version": "check-node-version --node \">= 12\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/wechaty-getting-started.git"
},
"keywords": [],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/wechaty-getting-started/issues"
},
"homepage": "https://github.com/wechaty/wechaty-getting-started#readme",
"dependencies": {
"dotenv": "^8.2.0",
"qrcode-terminal": "^0.12.0",
"wechaty": "^0.60.3",
"wechaty-plugin-contrib": "^0.14.16"
},
"devDependencies": {
"@chatie/eslint-config": "^0.12.3",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^0.14.1",
"check-node-version": "^4.1.0",
"connect": "^3.7.0",
"cross-env": "^7.0.3",
"is-pr": "^2.0.0",
"marked": "^2.0.0",
"nodemon": "^2.0.7",
"wechaty-puppet-mock": "^0.28.2",
"wechaty-puppet-wechat": "^0.28",
"wechaty-puppet-wechat4u": "^0.18",
"wechaty-puppet-whatsapp": "0.2.3"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}