forked from wechaty/getting-started
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.38 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
{
"name": "wechaty-getting-started",
"version": "1.18.9",
"description": "Wechaty conversational SDK getting start template & examples",
"type": "module",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"build": "tsc",
"lint": "eslint \"examples/*.ts\" \"tests/*.ts\"",
"postinstall": "check-node-version --node \">=16\" --npm \">=7\"",
"cqrs": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/cqrs/ding-dong-bot.ts ",
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/ding-dong-bot.ts",
"start:js": "node examples/ding-dong-bot.js",
"start:walnut": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-walnut npm start",
"start:service": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-service npm start",
"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:whatsapp:web": "cross-env WECHATY_LOG=verbose WECHATY_PUPPET=wechaty-puppet-whatsapp npm start",
"test": "npm-run-all lint test:smoke",
"test:smoke": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" tap \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/getting-started.git"
},
"keywords": [],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/getting-started/issues"
},
"homepage": "https://github.com/wechaty/getting-started#readme",
"dependencies": {
"dotenv": "^16.0.0",
"qrcode-terminal": "^0.12.0",
"wechaty": "^1.18.1",
"wechaty-cqrs": "^0.7.5",
"wechaty-plugin-contrib": "^1.11.1",
"wechaty-puppet-oicq": "^1.10.2",
"wechaty-puppet-walnut": "^1.11.6",
"wechaty-puppet-wechat": "^1.18.1",
"wechaty-puppet-wechat4u": "~1.11.1",
"wechaty-puppet-whatsapp": "^1.19.0",
"wechaty-puppet-xp": "^1.10.20"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/tsconfig": "^4.6.3",
"check-node-version": "^4.2.1",
"is-pr": "^2.0.0",
"ts-node": "^10.9.1",
"wechaty-puppet-mock": "^1.18.2"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}