forked from wechaty/puppet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
126 lines (126 loc) · 3.36 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
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@juzi/wechaty-puppet",
"version": "1.0.100",
"description": "Abstract Puppet for Wechaty",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/src/mods/mod.js",
"require": "./dist/cjs/src/mods/mod.js"
},
"./filters": {
"import": "./dist/esm/src/mods/filters.js",
"require": "./dist/cjs/src/mods/filters.js"
},
"./helpers": {
"import": "./dist/esm/src/mods/helpers.js",
"require": "./dist/cjs/src/mods/helpers.js"
},
"./impls": {
"import": "./dist/esm/src/mods/impls.js",
"require": "./dist/cjs/src/mods/impls.js"
},
"./payloads": {
"import": "./dist/esm/src/mods/payloads.js",
"require": "./dist/cjs/src/mods/payloads.js"
},
"./types": {
"import": "./dist/esm/src/mods/types.js",
"require": "./dist/cjs/src/mods/types.js"
}
},
"typesVersions": {
"*": {
"filters": [
"./dist/esm/src/mods/filters.d.ts"
],
"helpers": [
"./dist/esm/src/mods/helpers.d.ts"
],
"impls": [
"./dist/esm/src/mods/impls.d.ts"
],
"payloads": [
"./dist/esm/src/mods/payloads.d.ts"
],
"types": [
"./dist/esm/src/mods/types.d.ts"
]
}
},
"types": "./dist/esm/src/mods/mod.d.ts",
"engines": {
"node": ">=16",
"npm": ">=7"
},
"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/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"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 \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
"typedoc": "bash scripts/typedoc.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juzibot/wechaty-puppet.git"
},
"keywords": [
"chatie",
"wechaty",
"wechat",
"chatbot",
"bot",
"sdk"
],
"author": "Huan LI <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/juzibot/wechaty-puppet/issues"
},
"homepage": "https://github.com/juzibot/wechaty-puppet#readme",
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^4.6.2",
"@swc/core": "1.3.39",
"@types/node": "^20.8.6",
"@types/uuid": "^8.3.3",
"esquery": "1.4.0",
"nop": "^1.0.0",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.4.0",
"ts-node": "10.9.1",
"tstest": "^1.0.1",
"typescript": "4.7.4",
"yocto-queue": "^1.0.0"
},
"dependencies": {
"@alloc/quick-lru": "^5.2.0",
"brolog": "^1.14.2",
"clone-class": "^1.1.1",
"file-box": "^1.4.13",
"fp-ts": "^2.11.5",
"gerror": "^1.0.16",
"memory-card": "^1.1.2",
"state-switch": "^1.7.1",
"typed-emitter": "^1.5.0-from-event",
"typesafe-actions": "^5.1.0",
"uuid": "^8.3.2",
"watchdog": "^0.9.2"
},
"files": [
"dist/",
"src/"
],
"publishConfig": {
"access": "public",
"tag": "next"
}
}