generated from wechaty/puppet-mock
-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
114 lines (114 loc) · 3.06 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
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "wechaty-puppet-padlocal",
"version": "1.20.1",
"description": "Puppet PadLocal 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"
},
"files": [
"bin/",
"dist/",
"src/"
],
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build dist:commonjs",
"build": "tsc && tsc -p tsconfig.cjs.json",
"dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
"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/**/*.test.ts\" --ignore-pattern tests/fixtures/",
"test": "npm-run-all lint",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "jest",
"coverage": "jest --coverage",
"generate-package-json": "bash ./scripts/generate-package-json.sh",
"prepare": "npm-run-all dist",
"serve": "tsc-watch",
"demo": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/demo.ts"
},
"repository": {
"type": "git",
"url": "git+https://padlocal/wechaty-puppet-padlocal.git"
},
"keywords": [
"chatie",
"wechaty",
"chatbot",
"bot",
"wechat",
"sdk",
"puppet",
"padlocal",
"wechaty-puppet",
"wechaty-puppet-padlocal",
"weixin"
],
"author": "haoda",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/padlocal/wechaty-puppet-padlocal/issues"
},
"homepage": "https://github.com/padlocal/wechaty-puppet-padlocal#readme",
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.2",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.0",
"@types/lru-cache": "^5.1.1",
"@types/normalize-package-data": "^2.4.1",
"@types/qrcode-terminal": "^0.12.0",
"@types/quick-lru": "^3.0.0",
"@types/xml2js": "^0.4.9",
"config": "^3.3.7",
"jest": "^28.0.2",
"jest-ts-webcompat-resolver": "^1.0.0",
"normalize-package-data": "^3.0.3",
"pkg-jq": "^0.2.11",
"prettier": "^2.5.1",
"qrcode-terminal": "^0.12.0",
"shx": "^0.3.4",
"ts-jest": "^28.0.0-next.1",
"tsc-watch": "^4.6.0",
"tstest": "^1.0.1",
"wechaty": "^1.19.10"
},
"peerDependencies": {
"wechaty-puppet": "^1.19.6"
},
"dependencies": {
"@types/config": "0.0.41",
"@types/node-cleanup": "^2.1.2",
"fast-xml-parser": "^3.17.6",
"file-box": "^1.4.14",
"flash-store": "^1.0.6",
"fs-extra": "^10.0.0",
"lru-cache": "^6.0.0",
"node-cleanup": "^2.1.2",
"padlocal-client-ts": "^0.5.3",
"quick-lru": "^6.0.2",
"state-switch": "^1.6.3",
"xml2js": "^0.4.23"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}