forked from wechaty/puppet-lark
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 2.93 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
{
"name": "wechaty-puppet-engine",
"version": "1.0.27",
"description": "Puppet engine for Wechaty",
"type": "module",
"typings": "./dist/esm/src/mod.d.ts",
"exports": {
".": {
"import": "./dist/esm/src/mod.js",
"require": "./dist/cjs/src/mod.js"
}
},
"engines": {
"wechaty": ">=1.20",
"wechaty-puppet": ">=1.20"
},
"scripts": {
"dist": "npm-run-all 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: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",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"tests/**/*.spec.ts\" --ignore-pattern tests/fixtures/",
"test:unit": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" TAP_TIMEOUT=60 tap \"src/**/*.spec.ts\" \"tests/**/*.spec.ts\"",
"start:test": "node --loader ts-node/esm examples/ding-dong-bot.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leochen-g/wechaty-puppet-engine.git"
},
"keywords": [
"wechaty",
"engine",
"chatbot",
"bot",
"grpc",
"wechat",
"sdk"
],
"author": "Leo_chen <https://github.com/leochen-g>",
"maintainers": [
"Huan <[email protected]>"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/leochen-g/wechaty-puppet-engine/issues"
},
"homepage": "https://github.com/leochen-g/wechaty-puppet-engine#readme",
"devDependencies": {
"@chatie/eslint-config": "^1.0.4",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@swc/core": "^1.3.41",
"@types/body-parser": "^1.19.0",
"@types/express": "^4.17.11",
"@types/fs-extra": "^9.0.13",
"@types/lru-cache": "^5.1.1",
"@types/xml2js": "^0.4.11",
"cross-env": "^7.0.3",
"eslint-plugin-n": "^15.6.1",
"npm-run-all": "^4.1.5",
"pkg-jq": "^0.2.11",
"ts-node": "^10.9.1",
"tstest": "^1.2.8",
"wechaty": "^1.20.2",
"wechaty-puppet": "^1.20.2"
},
"peerDependencies": {
"wechaty-puppet": "^1.20.2"
},
"dependencies": {
"@types/node-cleanup": "^2.1.2",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cuid": "^2.1.8",
"express": "^4.17.1",
"express-xml-bodyparser": "^0.3.0",
"file-box": "^1.4.15",
"fs-extra": "^10.1.0",
"lru-cache": "^6.0.0",
"node-cleanup": "^2.1.2",
"xml2js": "^0.4.23"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"files": [
"bin/",
"dist/",
"src/"
],
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}