-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 3.43 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "vp-starter",
"version": "0.2.0",
"description": "A VuePress2 Template for building documentation websites.",
"author": "Leon <silenceace@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/funnyzak/vp-starter.git"
},
"keywords": [
"vuepress",
"vp-starter",
"document"
],
"scripts": {
"docs:dev:default": "cross-env CONFIG_NAME=default yarn docs:dev",
"docs:build:default": "cross-env CONFIG_NAME=default yarn docs:build",
"docs:build:all": "for f in $(ls ./docs/.vuepress/custom | grep \"json\"); do (cross-env CONFIG_NAME=$(basename -s .json $f) vuepress build docs -d docs/.vuepress/dist/$(basename -s .json $f)); done",
"docs:zip:all": "cd docs/.vuepress/dist; for dir in $(ls -d ./*/); do (zip -q -r ./$(basename $dir).zip ${dir}* && echo \"Compressed to ./$(basename $dir).zip.\"); done ",
"docs:build2zip:all": "yarn docs:build:all && yarn docs:zip:all",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"npm:check": "npx npm-check-updates",
"clean": "npx rimraf node_modules",
"pangu": "npx pangu -f docs/*",
"clean:cache": "npx rimraf node_modules/.cache",
"style:check": "prettier --check --loglevel warn \"./**/*.{js,ts,json,tsx,css,less,vue,html,md,cjs}\"",
"style:fix": "prettier --write --loglevel warn \"./**/*.{js,ts,json,tsx,css,less,vue,html,md,cjs}\"",
"eslint:check": "eslint --ext .js,.ts,.vue,.tsx,.cjs ./",
"eslint:fix": "eslint --fix --ext .js,.ts,.vue,.tsx,.cjs ./",
"lint:check": "yarn eslint:check && yarn style:check",
"lint:fix": "yarn eslint:fix && yarn style:fix",
"lint:staged": "lint-staged",
"prepare": "if [[ $NODE_ENV != \"production\" ]]; then husky install; fi"
},
"license": "MIT",
"private": false,
"devDependencies": {
"@algolia/client-search": "4.14.3",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"@vuepress/client": "2.0.0-beta.59",
"@vuepress/core": "2.0.0-beta.59",
"@vuepress/plugin-docsearch": "2.0.0-beta.59",
"@vuepress/plugin-google-analytics": "2.0.0-beta.59",
"@vuepress/plugin-prismjs": "2.0.0-beta.59",
"@vuepress/plugin-pwa": "2.0.0-beta.59",
"@vuepress/plugin-register-components": "2.0.0-beta.59",
"@vuepress/plugin-search": "2.0.0-beta.59",
"@vuepress/plugin-shiki": "2.0.0-beta.59",
"@vuepress/utils": "2.0.0-beta.59",
"@vueuse/core": "9.8.2",
"cross-env": "7.0.3",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-define-config": "1.12.0",
"eslint-plugin-vue": "9.8.0",
"husky": "8.0.2",
"lint-staged": "13.1.0",
"lodash": "4.17.21",
"npm-check-updates": "16.6.2",
"pangu": "4.0.7",
"prettier": "2.8.4",
"prettier-config-vuepress": "4.0.0",
"rimraf": "3.0.2",
"sass-loader": "13.2.0",
"typescript": "4.9.4",
"vuepress": "2.0.0-beta.59",
"vuepress-plugin-copy-code2": "2.0.0-beta.143",
"vuepress-plugin-md-enhance": "2.0.0-beta.143",
"vuepress-plugin-typescript": "0.3.1"
},
"dependencies": {
"vue": "3.2.45"
},
"lint-staged": {
"*.{js,cjs,,ts}": [
"prettier --write",
"eslint --fix --cache"
],
"*.{md,vue,jsx,tsx,html,json,css,less,scss,sass}": [
"prettier --write"
]
},
"bugs": {
"url": "https://github.com/funnyzak/vp-starter/issues"
},
"homepage": "https://github.com/funnyzak/vp-starter#readme"
}