mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 05:16:23 +10:00
59 lines
1.9 KiB
JSON
59 lines
1.9 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/@vuepress/*",
|
|
"packages/vuepress",
|
|
"packages/docs"
|
|
],
|
|
"description": "Minimalistic doc generator with Vue component based layout system",
|
|
"scripts": {
|
|
"bootstrap": "yarn && yarn tsc",
|
|
"lerna:bootstrap": "lerna bootstrap",
|
|
"clean": "lerna clean && rm -rf node_modules",
|
|
"packages:list": "lerna ls -l",
|
|
"packages:diff": "lerna diff",
|
|
"packages:changed": "lerna changed",
|
|
"boot": "node scripts/bootstrap.js",
|
|
"remote-version": "node scripts/remote-version.js",
|
|
"dev": "yarn tsc && yarn dev:docs",
|
|
"dev:docs": "yarn workspace docs dev",
|
|
"build": "yarn tsc && yarn build:docs",
|
|
"build:docs": "yarn workspace docs build",
|
|
"view-info": "yarn tsc && yarn workspace docs view-info",
|
|
"show-help": "yarn workspace docs show-help",
|
|
"register-vuepress": "lerna exec --scope vuepress -- yarn link",
|
|
"lint": "yarn lint:check --fix",
|
|
"lint:check": "eslint packages --ext .js,.vue",
|
|
"release": "yarn --pure-lockfile && yarn tsc && node scripts/release.js",
|
|
"unregister-vuepress": "lerna exec --scope vuepress -- yarn unlink",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 2",
|
|
"test": "node scripts/test.js",
|
|
"tsc": "yarn workspace @vuepress/shared-utils tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@types/escape-html": "^0.0.20",
|
|
"@types/fs-extra": "^5.0.4",
|
|
"@types/globby": "^9.1.0",
|
|
"@types/hash-sum": "^1.0.0",
|
|
"@types/lru-cache": "^5.1.0",
|
|
"@types/node": "^12.7.5",
|
|
"@types/semver": "^6.0.0",
|
|
"conventional-changelog-cli": "^2.0.23",
|
|
"all-contributors-cli": "^6.9.1",
|
|
"eslint": "5.11.1",
|
|
"eslint-plugin-jest": "^22.17.0",
|
|
"eslint-plugin-vue-libs": "^4.0.0",
|
|
"husky": "^3.0.5",
|
|
"inquirer": "^7.0.0",
|
|
"lerna": "3.16.4",
|
|
"lint-staged": "^9.3.0",
|
|
"minimist": "^1.2.0",
|
|
"typescript": "^3.6.3"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
}
|
|
}
|