-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
102 lines (102 loc) · 2.88 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
96
97
98
99
100
101
102
{
"name": "wechaty-puppet-wechat",
"version": "1.18.4",
"description": "Puppet WeChat for Wechaty",
"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": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build dist:commonjs dist:copy",
"dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
"dist:copy": "npm-run-all copy:esm copy:cjs",
"copy:js": "shx cp src/*.js dist/src/",
"copy:esm": "shx cp -R commonjs/ dist/esm/ && shx cp src/*.js dist/esm/src/",
"copy:cjs": "shx cp -R commonjs/ dist/cjs/ && shx cp src/*.js dist/cjs/src/",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:es": "eslint --ignore-pattern fixtures/ \"src/**/*.ts\" \"tests/**/*.ts\"",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/ding-dong-bot.ts",
"test": "npm-run-all lint test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" TAP_TIMEOUT=60 tap \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/puppet-wechat.git"
},
"keywords": [
"chatie",
"wechaty",
"wechat",
"chatbot",
"bot",
"sdk",
"puppet",
"weixin"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/puppet-wechat/issues"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.3",
"@types/md5": "^2.3.2",
"@types/mime": "^2.0.3",
"@types/qr-image": "^3.2.5",
"@types/request": "^2.48.8",
"@types/xml2js": "^0.4.9",
"why-is-node-running": "^2.2.1"
},
"peerDependencies": {
"wechaty-puppet": "^1.18.3"
},
"homepage": "https://github.com/wechaty/puppet-wechat#readme",
"dependencies": {
"cockatiel": "^2.0.2",
"md5": "^2.3.0",
"mime": "^3.0.0",
"puppeteer": "^13.5.1",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"qr-image": "^3.2.0",
"request": "^2.88.2",
"rx-queue": "^1.0.5",
"rxjs": "^7.5.5",
"state-switch": "^1.6.3",
"watchdog": "^0.8.17",
"xml2js": "^0.4.23"
},
"files": [
"bin/",
"dist/",
"src/"
],
"tap": {
"check-coverage": false
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}