forked from PX4/PX4-user_guide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.08 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
{
"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",
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.6.0",
"@vuepress/plugin-google-analytics": "^1.6.0",
"@vuepress/plugin-medium-zoom": "^1.6.0",
"lodash.debounce": "^4.0.8",
"vuepress": "^1.5.4",
"vuepress-plugin-redirect": "^1.2.5"
},
"scripts": {
"ununtu_copyworker": "./.vuepress/scripts/worker_copy.sh",
"windows_copyworker": "./.vuepress/scripts/worker_copy.bat",
"docs:buildwin": "set NODE_OPTIONS=--max_old_space_size=8192 && vuepress build .",
"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:build": "yarn docs:build_ubuntu"
},
"dependencies": {
"markdown-it-video": "^0.6.3",
"vuepress-plugin-mathjax": "^1.2.8",
"vuepress-plugin-right-anchor": "^0.4.4"
}
}