forked from PX4/PX4-user_guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.5 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
{
"name": "px4_user_guide",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/PX4/px4_user_guide.git",
"license": "CC-BY-4.0",
"scripts": {
"ununtu_copyworker": "cp .vuepress/scripts/* node_modules/@vuepress/core/lib/node/build/",
"windows_copyworker": "xcopy /f /y \".vuepress/scripts/*\" \"node_modules/@vuepress/core/lib/node/build/\"",
"docs:buildwin": "set NODE_OPTIONS=--max_old_space_size=8192 && vuepress build .",
"docs:buildfast_windows": "yarn windows_copyworker && yarn docs:buildwin",
"docs:build_ubuntu": "NODE_OPTIONS='--max-old-space-size=8192' vuepress build .",
"docs:buildfast_ubuntu": "yarn ununtu_copyworker && yarn docs:build_ubuntu",
"docs:dev": "vuepress dev . ",
"docs:buildnorm": "vuepress build .",
"docs:sitemap": "python3 ./scripts/gen_sitemap.py",
"docs:build": "yarn docs:buildfast_ubuntu",
"start": "yarn docs:dev",
"linkcheck": "vuepress check-md . > linkinfo_check-md.log 2>&1"
},
"dependencies": {
"@vuepress/plugin-back-to-top": "^1.8.2",
"@vuepress/plugin-google-analytics": "^1.8.2",
"@vuepress/plugin-medium-zoom": "^1.8.2",
"lodash.debounce": "^4.0.8",
"markdown-it-video": "^0.6.3",
"vue-tabs-component": "^1.5.0",
"vuepress": "^1.8.2",
"vuepress-plugin-mathjax": "^1.2.8",
"vuepress-plugin-redirect": "^1.2.5",
"vuepress-plugin-right-anchor": "^0.4.9",
"vuepress-plugin-tabs": "^0.3.0"
},
"devDependencies": {
"vuepress-plugin-check-md": "^0.0.2"
}
}