-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
40 lines (40 loc) · 1.22 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
{
"name": "@argdown/monorepo",
"author": "Christian Voigt <[email protected]>",
"repository": "https://github.com/christianvoigt/argdown",
"private": true,
"license": "MIT",
"scripts": {
"lerna:bootstrap": "lerna bootstrap",
"lerna:version": "lerna version",
"test": "lerna run test",
"test:coverage": "lerna run test:coverage",
"build": "lerna run build",
"docs:dev": "yarn run copy-web-component && vuepress dev ./docs",
"docs:buildall": "build-docs.sh",
"docs:build": "yarn run copy-web-component && vuepress build docs",
"docs:deploy": "./deploy-docs.sh",
"prepare": "lerna run prepare",
"copy-web-component": "node ./copy-web-component.js",
"install-package": "lerna add @types/pdfkit --scope=@argdown/node",
"lerna:upgrade": "lerna exec -- yarn upgrade",
"lerna:install": "lerna exec -- yarn install"
},
"readmeFilename": "Readme.md",
"preferGlobal": true,
"devDependencies": {
"@vuepress/plugin-pwa": "1.8.2",
"esm": "^3.2.25",
"lerna": "4.0.0",
"vuepress": "1.8.2"
},
"workspace-sources": {
"*": [
"packages/*/src"
]
},
"dependencies": {
"markdown-it-container": "3.0.0",
"vuepress-plugin-sitemap": "2.3.1"
}
}