-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "wechaty-actor",
"version": "0.5.4",
"description": "Wechaty Actor Model, Powered by XState, Mailbox, and CQRS",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"types": "./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: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",
"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",
"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\"",
"lint:es": "eslint --ignore-pattern tests/fixtures/ '{bin,examples,scripts,src,tests}/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wechaty/actor.git"
},
"keywords": [
"wechaty",
"actor",
"xstate",
"mailbox",
"cqrs",
"ddd"
],
"author": "Huan <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/actor/issues"
},
"dependencies": {
"mailbox": "^0.10.12",
"xstate": "4.31.0"
},
"peerDependencies": {
"wechaty-cqrs": "^0.15.4",
"wechaty": "^1.19.10"
},
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.3",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/time-constants": "^1.0.0",
"@types/uuid": "^8.3.4",
"glob": "^7.2.0",
"tstest": "^1.2.8",
"wechaty-mocker": "^1.11.3",
"wechaty-puppet-mock": "^1.18.2",
"wechaty-puppet-wechat": "^1.18.1"
},
"publishConfig": {
"tag": "next"
},
"files": [
"bin/",
"dist/",
"src/"
],
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
},
"homepage": "https://github.com/wechaty/actor#readme"
}