-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.69 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
{
"name": "wechaty-cli",
"version": "0.2.10",
"description": "Command-line Client for Wechaty, powered by blessed",
"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.69"
},
"bin": {
"wechaty-cli": "dist/esm/bin/cli.js"
},
"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",
"debug": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node --nolazy --inspect-brk=9229 bin/cli.ts",
"start": "cross-env NODE_OPTIONS=\"--no-warnings --loader=ts-node/esm\" node bin/cli.ts",
"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 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\" \"tests/**/*.spec.ts\""
},
"files": [
"bin/",
"dist/",
"src/",
"docs/images/terminal-wechaty.webp"
],
"repositry": {
"type": "git",
"url": "git+https://github.com/wechaty/cli.git"
},
"keywords": [
"wechaty",
"token"
],
"author": "chinggg",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wechaty/cli/issues"
},
"homepage": "https://github.com/wechaty/cli#readme",
"dependencies": {
"@types/blessed": "^0.1.19",
"argparse": "^2.0.1",
"blessed": "^0.1.81",
"blessed-contrib": "github:chinggg/blessed-contrib",
"qrcode-terminal": "^0.12.0",
"update-notifier": "^5.1.0",
"wechaty": "^0.69.38"
},
"devDependencies": {
"@chatie/eslint-config": "^0.14.1",
"@chatie/git-scripts": "^0.6.2",
"@chatie/semver": "^0.4.7",
"@chatie/tsconfig": "^0.20.2",
"@grpc/grpc-js": "^1.3.6",
"@types/argparse": "^2.0.10",
"@types/update-notifier": "^5.1.0",
"@types/uuid": "^8.3.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"pkg-jq": "^0.2.11",
"shx": "^0.3.3",
"tstest": "^0.5.16",
"type-fest": "^2.3.2",
"typescript": "^4.4.2",
"wechaty-puppet-padlocal": "^0.4.2",
"wechaty-puppet-wechat": "^0.29.7"
},
"publishConfig": {
"access": "public",
"tag": "next"
},
"tap": {
"check-coverage": false
},
"git": {
"scripts": {
"pre-push": "npx git-scripts-pre-push"
}
}
}