forked from wechaty/puppet-whatsapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.56 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@juzi/wechaty-puppet-whatsapp",
"version": "1.0.35",
"description": "Wechaty Puppet for WhatsApp",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"typings": "./dist/esm/src/mod.d.ts",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build fixup",
"build": "tsc && tsc -p tsconfig.cjs.json",
"fixup": "shx echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"start": "cross-env NODE_OPTIONS='--no-warnings --loader=ts-node/esm' node examples/ding-dong-bot.ts",
"lint": "npm-run-all lint:es lint:ts lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"lint:es": "eslint \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"test": "npm-run-all lint test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "tap --node-arg=--loader=ts-node/esm --node-arg=--no-warnings 'src/**/*.spec.ts' 'tests/**/*.spec.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juzibot/puppet-whatsapp.git"
},
"keywords": [
"chatie",
"wechaty",
"chatbot",
"bot",
"wechat",
"sdk",
"puppet",
"mock"
],
"author": "Huan LI <zixia@zixia.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juzibot/puppet-whatsapp/issues"
},
"homepage": "https://github.com/juzibot/puppet-whatsapp#readme",
"devDependencies": {
"@chatie/eslint-config": "1.0.4",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "4.6.3",
"@juzi/wechaty-puppet": "^1.0.58",
"@swc/core": "^1.4.12",
"@types/cuid": "^2.0.1",
"@types/fs-extra": "^9.0.13",
"@types/mime": "^2.0.3",
"@types/node-schedule": "^1.3.2",
"@types/qrcode-terminal": "^0.12.0",
"@types/uuid": "^9.0.2",
"qrcode-terminal": "^0.12.0",
"ts-node": "^10.9.1",
"tstest": "^1.2.8",
"typescript": "5.1.6"
},
"peerDependencies": {
"@juzi/wechaty-puppet": "^1.0.15"
},
"dependencies": {
"@juzi/whatsapp-web.js": "^1.21.15",
"ee-ts": "^1.0.2",
"flash-store": "^1.0.6",
"fs-extra": "^10.0.1",
"gerror": "^1.0.16",
"mime": "^3.0.0",
"node-schedule": "^2.1.0",
"rxjs": "^7.5.5",
"type-fest": "^2.12.2",
"uuid": "^9.0.0"
},
"files": [
"bin/",
"dist/",
"src/"
],
"tap": {
"check-coverage": false
},
"publishConfig": {
"access": "public",
"tag": "next"
}
}