forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
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": "vuepress-plugin-typedoc",
"version": "0.10.3",
"description": "A VuePress plugin to build api documentation with TypeDoc.",
"main": "dist/index.js",
"files": [
"dist/"
],
"bugs": {
"url": "https://github.com/tgreyuk/typedoc-plugin-markdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tgreyuk/typedoc-plugin-markdown.git",
"directory": "packages/vuepress-plugin-typedoc"
},
"homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/vuepress-plugin-typedoc",
"peerDependencies": {
"typedoc": ">=0.22.0",
"typedoc-plugin-markdown": ">=3.11.10"
},
"scripts": {
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "yarn run lint && yarn run build",
"build": "rm -rf ./dist && tsc",
"test:init": "rm -rf test/site && yarn create vuepress-site test/site",
"test:demo:start": "yarn run build && cd test/site/docs && yarn run dev",
"test:demo:build": "yarn run build && cd test/site/docs && yarn run build && npx http-server ./src/.vuepress/dist -o"
},
"author": "Thomas Grey",
"license": "MIT",
"keywords": [
"vuepress",
"typedoc",
"plugin",
"markdown",
"typescript",
"api"
]
}