-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpackage.json
134 lines (134 loc) · 4.02 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "vitepress-for-component",
"version": "0.17.1",
"description": "dumi like documentation tool",
"main": "dist/node/index.js",
"typings": "types/index.d.ts",
"bin": {
"vitepress-fc": "bin/vitepress-fc.js"
},
"files": [
"bin",
"lib",
"dist",
"types"
],
"keywords": [
"documentation",
"generator",
"vuepress",
"dumi",
"vue",
"vite"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dewfall123/vitepress-for-component.git"
},
"bugs": {
"url": "https://github.com/dewfall123/vitepress-for-component/issues"
},
"homepage": "https://github.com/dewfall123/vitepress-for-component/#readme",
"scripts": {
"dev": "yarn dev-shared && yarn dev-start",
"dev-start": "run-p dev-client dev-node dev-watch",
"dev-client": "tsc -w -p src/client",
"dev-node": "tsc -w -p src/node",
"dev-shared": "node scripts/copyShared",
"dev-watch": "node scripts/watchAndCopy",
"build": "rimraf -rf dist && node scripts/copyShared && tsc -p src/client && tsc -p src/node && node scripts/copyClient",
"lint": "yarn lint:js && yarn lint:ts",
"lint:js": "prettier --check --write \"{bin,docs,scripts,src}/**/*.js\"",
"lint:ts": "prettier --check --write --parser typescript \"{__tests__,src,docs,types}/**/*.ts\"",
"test": "jest",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "node scripts/release.js",
"docs": "run-p dev docs-dev",
"docs-dev": "node ./bin/vitepress-fc dev docs --host",
"docs-debug": "node --inspect-brk ./bin/vitepress dev docs",
"docs-build": "cross-env NODE_ENV=production yarn build && cross-env NODE_ENV=production node ./bin/vitepress-fc build docs",
"docs-serve": "cross-env NODE_ENV=production node ./bin/vitepress-fc serve --root docs",
"docs-build-serve": "yarn docs-build && yarn docs-serve",
"docs-deploy": "gh-pages -d docs/dist -t true",
"docs-build-deploy": "yarn docs-build && yarn docs-deploy"
},
"engines": {
"node": ">=12.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"author": "dewfall",
"license": "MIT",
"dependencies": {
"@docsearch/css": "^1.0.0-alpha.28",
"@docsearch/js": "^1.0.0-alpha.28",
"@vitejs/plugin-vue": "^2.1.0",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"compression": "^1.7.4",
"debug": "^4.1.1",
"diacritics": "^1.3.0",
"escape-html": "^1.0.3",
"fs-extra": "^9.1.0",
"globby": "^11.0.2",
"gray-matter": "^4.0.2",
"less": "^4.1.1",
"lru-cache": "^6.0.0",
"markdown-it": "^10.0.0",
"markdown-it-anchor": "^5.2.7",
"markdown-it-container": "^2.0.0",
"markdown-it-emoji": "^1.4.0",
"markdown-it-table-of-contents": "^0.4.4",
"minimist": "^1.2.5",
"ora": "^5.3.0",
"polka": "^0.5.2",
"portfinder": "^1.0.28",
"prismjs": "^1.23.0",
"sass": "^1.32.6",
"sirv": "^1.0.11",
"slash": "^3.0.0",
"stylus": "^0.54.8",
"vite": "^2.9.1",
"vue": "^3.2.20"
},
"devDependencies": {
"@types/compression": "^1.7.0",
"@types/es-module-lexer": "^0.3.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.20",
"@types/koa": "^2.11.7",
"@types/koa-static": "^4.0.1",
"@types/koa-static-server": "^1.3.0",
"@types/lru-cache": "^5.1.0",
"@types/markdown-it": "^10.0.2",
"@types/node": "^14.14.25",
"@types/postcss-load-config": "^2.0.1",
"conventional-changelog-cli": "^2.1.0",
"cross-env": "^7.0.3",
"element-plus": "^1.0.2-beta.33",
"enquirer": "^2.3.6",
"execa": "^5.0.0",
"gh-pages": "^3.1.0",
"jest": "^26.6.3",
"koa-static-server": "^1.5.2",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"rollup": "^2.38.5",
"semver": "^7.3.2",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4",
"vue-typical": "^2.1.0",
"yorkie": "^2.0.0"
}
}