-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·38 lines (38 loc) · 1.19 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
{
"name": "nitro-workshop",
"version": "1.0.0",
"private": true,
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"@vuepress/plugin-active-header-links": "^1.3.0",
"@vuepress/plugin-google-analytics": "^1.3.0",
"@vuepress/plugin-medium-zoom": "^1.3.0",
"@vuepress/plugin-pwa": "^1.3.0",
"dotenv": "^8.2.0",
"gh-pages": "^2.2.0",
"markdown-it-imsize": "^2.0.1",
"vue-tabs-component": "^1.5.0",
"vuepress": "^1.3.0",
"vuepress-plugin-code-copy": "^1.0.6",
"vuepress-plugin-container": "^2.1.2",
"vuepress-plugin-seo": "^0.1.2",
"vuepress-plugin-social-share": "^0.2.1",
"vuepress-plugin-tabs": "^0.3.0"
},
"scripts": {
"start": "vuepress dev docs --no-cache",
"devcontainer:update": "cd src && zip -R ../docs/.vuepress/public/devcontainer.zip .devcontainer/*",
"build": "vuepress build docs -d dist",
"build:release": "npm run devcontainer:update -s && npm run build -s",
"deploy": "gh-pages -d redirect",
"release": "npm run build -s && npm run deploy -s",
"links": "cxa -t nitro-workshop-yolasors docs/*.md"
},
"keywords": [],
"author": "",
"license": "MIT"
}