-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
111 lines (111 loc) · 3.32 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
{
"name": "ha-wechaty",
"version": "0.9.12",
"description": "HAWechaty is a Load Balance for providing High Availability for Wechaty Chatbot by spreading requests across multiple WeChat individual accounts.",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"typings": "./dist/esm/src/mod.d.ts",
"engines": {
"wechaty": ">=0.68",
"wechaty-puppet": ">=0.43",
"node": ">=16",
"npm": ">=7"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"build": "tsc && tsc -p tsconfig.cjs.json",
"clean": "shx rm -fr dist/*",
"dist": "npm-run-all clean build dist:commonjs",
"dist:commonjs": "jq -n \"{ type: \\\"commonjs\\\" }\" > dist/cjs/package.json",
"example": "ts-node examples/ding-dong-bot.ts",
"lint": "npm run lint:es && npm run lint:ts && npm run lint:md",
"lint:md": "markdownlint README.md",
"lint:ts": "tsc --isolatedModules --noEmit",
"redux-devtools": "redux-devtools --hostname=localhost --port=8000",
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/ding-dong-bot.ts",
"redux": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node examples/redux-ducks-bot/redux-ducks-bot.ts",
"test": "npm run lint && npm run 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\" \"src/*.spec.ts\" \"tests/*.spec.ts\" \"tests/**/*.spec.ts\"",
"lint:es": "eslint --ignore-pattern fixtures/ 'src/**/*.ts' 'tests/**/*.ts'"
},
"dependencies": {
"cuid": "^2.1.8",
"typesafe-actions": "^5.1.0"
},
"peerDependencies": {
"ducks": "^0.11.10",
"redux-observable": "^2.0.0",
"redux": "^4.1.1",
"rxjs": "^7.3.0",
"wechaty-redux": "^0.5.6",
"wechaty": ">=0.68.1"
},
"devDependencies": {
"@chatie/eslint-config": "^0.14.1",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.20.2",
"@types/cuid": "^1.3.1",
"@types/glob": "^7.1.4",
"@types/redux-mock-store": "^1.0.3",
"@types/remote-redux-devtools": "^0.5.5",
"dotenv": "^10.0.0",
"glob": "^7.1.7",
"npm-run-all": "^4.1.5",
"pkg-jq": "^0.2.11",
"redux-devtools-cli": "1.0.0-4",
"redux-mock-store": "^1.5.4",
"remote-redux-devtools": "^0.5.16",
"shx": "^0.3.3",
"tstest": "^0.5.16",
"typescript": "^4.4.3",
"utility-types": "^3.10.0",
"wechaty-ducks-contrib": "^0.3.4",
"wechaty-plugin-contrib": "^0.14.23",
"wechaty-puppet-mock": "^0.29.2",
"wechaty-puppet-padlocal": "^0.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/ha-wechaty.git"
},
"keywords": [
"wechaty",
"ha",
"cluster",
"cloud"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/ha-wechaty/issues"
},
"homepage": "https://github.com/wechaty/ha-wechaty#readme",
"publishConfig": {
"access": "public",
"tag": "next"
},
"files": [
"bin/",
"dist/",
"src/"
],
"tap": {
"check-coverage": false
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}