forked from tencent-connect/bot-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.66 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
{
"name": "bot-docs",
"version": "1.0.0",
"description": "QQ机器人文档项目Í",
"main": "index.js",
"repository": "https://github.com/tencent-connect/bot-docs",
"author": "[email protected]",
"license": "MIT",
"private": true,
"devDependencies": {
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-pwa": "1.9.5",
"@vuepress/plugin-search": "^1.8.2",
"chalk": "^4.1.2",
"cheerio": "^1.0.0-rc.10",
"cross-env": "^7.0.3",
"eslint": "^8.5.0",
"fs-extra": "^10.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.3",
"lodash.throttle": "^4.1.1",
"patch-package": "^6.4.7",
"prettier": "^2.5.1",
"remark-cli": "^10.0.1",
"remark-lint": "^9.1.1",
"remark-preset-lint-consistent": "^5.1.1",
"remark-preset-lint-recommended": "^6.1.2",
"shelljs": "^0.8.4",
"textlint": "^12.1.0",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "^1.0.0",
"textlint-rule-stop-words": "^2.0.9",
"textlint-rule-write-good": "^2.0.0",
"umi-request": "^1.4.0",
"vuepress": "^1.8.2",
"vuepress-plugin-baidu-autopush": "^1.0.1",
"vuepress-plugin-fulltext-search": "^2.2.1",
"vuepress-plugin-one-click-copy": "^1.0.6",
"vuepress-plugin-right-anchor": "^0.5.5",
"vuepress-plugin-robots": "^1.0.1",
"vuepress-plugin-sitemap": "^2.3.1",
"vuepress-plugin-zooming": "^1.1.8"
},
"lint-staged": {
"*.md": [
"npm run lint-md"
]
},
"scripts": {
"prepare": "husky install",
"dev": "npm run sync-api && vuepress dev docs --temp .temp",
"devssl": "set NODE_OPTIONS=--openssl-legacy-provider & npm run sync-api && vuepress dev docs --temp .temp",
"build": "vuepress build docs --temp .temp --dest dist",
"build-test": "cross-env BUILD_ENV=test vuepress build docs --temp .temp --dest dist",
"lint-md": "npm run lint-md:style && npm run lint-md:wording",
"lint-md:style": "remark --quiet --frail .",
"lint-md:wording": "textlint './docs/**/*.md'",
"view-info": "vuepress view-info docs --temp .temp",
"sync-api": "node scripts/sync-inner-docs/index.js",
"change-log": "node scripts/change-log.js",
"build-tag": "node scripts/add-build-tag.js",
"postinstall":"patch-package"
},
"dependencies": {
"async-validator": "1.11.5",
"element-ui": "^2.15.6",
"flexsearch": "^0.6.32"
}
}