-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
96 lines (96 loc) · 2.65 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
{
"name": "wechaty-puppet-padplus",
"version": "0.7.43",
"description": "Puppet Padplus for Wechaty",
"directories": {
"test": "tests"
},
"main": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"engines": {
"wechaty": ">=0.17.46"
},
"scripts": {
"clean": "shx rm -fr dist/*",
"dist": "npm run clean && tsc && cp -R src/server-manager/proto-ts/ dist/src/server-manager/proto-ts/",
"pack": "npm pack",
"lint": "npm run lint:es && npm run lint:ts",
"lint:ts": "tsc --noEmit",
"lint:es": "eslint 'src/**/*.ts' 'tests/**/*.spec.ts' --ignore-pattern 'tests/fixtures/' --ignore-pattern 'src/server-manager/proto-ts/'",
"test": "npm run lint && npm run test:unit",
"test:pack": "bash -x scripts/npm-pack-testing.sh",
"test:unit": "blue-tape -r ts-node/register 'src/**/*.spec.ts' 'tests/**/*.spec.ts'",
"generate": "bash -x script/process-proto.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/botorange/wechaty-puppet-padplus.git"
},
"keywords": [
"chatie",
"wechaty",
"chatbot",
"bot",
"wechat",
"sdk",
"puppet",
"padplus"
],
"author": "G.CH. S.C.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/botorange/wechaty-puppet-padplus/issues"
},
"homepage": "https://github.com/botorange/wechaty-puppet-padplus#readme",
"devDependencies": {
"@chatie/eslint-config": "^0.8.1",
"@chatie/git-scripts": "^0.2.5",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.8.0",
"@types/fs-extra": "^8.0.0",
"@types/google-protobuf": "^3.2.7",
"@types/lru-cache": "^5.1.0",
"@types/promise-retry": "^1.1.3",
"@types/uuid": "^7.0.0",
"@types/xml2js": "^0.4.5",
"grpc_tools_node_protoc_ts": "~2.5.8",
"hot-import": "^0.2.1",
"memory-card": "^0.7.0",
"pkg-jq": "^0.2.2",
"shx": "^0.3.1",
"ts-protoc-gen": "^0.12.0",
"tstest": "^0.4.1",
"wechaty-puppet": "^0.32.0"
},
"peerDependencies": {
"wechaty-puppet": "^0.32.0"
},
"dependencies": {
"array-flatten": "^3.0.0",
"axios": "^0.19.2",
"brolog": "^1.6.5",
"ffmpeg-extract-frames": "^2.0.2",
"ffmpeg-probe": "^1.0.6",
"flash-store": "^0.14.5",
"fs-extra": "^8.1.0",
"google-protobuf": "^3.6.1",
"grpc": "^1.22.0",
"lru-cache": "^5.1.1",
"promise-retry": "^1.1.1",
"rx-queue": "^0.8.5",
"state-switch": "^0.9.7",
"uuid": "^7.0.0",
"watchdog": "^0.8.10",
"wechaty-puppet-cache": "^0.1.10",
"xml2js": "^0.4.22"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}