-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
55 lines (55 loc) · 1.56 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
{
"name": "vuepress-theme-api",
"description": "A api-friendly theme for VuePress.",
"version": "1.0.1",
"author": "sqrtthree <[email protected]>",
"homepage": "https://github.com/sqrthree/vuepress-theme-api#readme",
"keywords": [
"vuepress",
"vuepress-theme",
"api-friendly",
"documentation",
"site-generator"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sqrthree/vuepress-theme-api.git"
},
"bugs": {
"url": "https://github.com/sqrthree/vuepress-theme-api/issues"
},
"directories": {
"doc": "docs"
},
"main": "index.js",
"scripts": {
"dev": "npm run docs:dev",
"docs:dev": "vuepress dev docs --no-cache",
"docs:build": "npm run docs:clean && vuepress build docs",
"docs:serve": "serve --single docs/.vuepress/dist",
"docs:clean": "rm -r docs/.vuepress/dist",
"lint": "eslint --ext .js,.vue ./",
"deploy": "npm run docs:build && gh-pages -d docs/.vuepress/dist",
"test": "prettier --check '**/*.{js,vue}'"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"license": "MIT",
"dependencies": {
"@vuepress/plugin-active-header-links": "~1.8.2",
"@vuepress/plugin-last-updated": "~1.8.2",
"axios": "~0.21.1",
"vuepress-plugin-define": "~1.1.1"
},
"devDependencies": {
"@vue/eslint-config-prettier": "~6.0.0",
"babel-eslint": "~10.1.0",
"eslint": "~7.32.0",
"eslint-plugin-prettier": "~3.4.0",
"eslint-plugin-vue": "~7.15.1",
"gh-pages": "~3.2.2",
"prettier": "~2.3.1",
"vuepress": "~1.8.2"
}
}