forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.12 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
{
"name": "vuepress-plugin-typedoc",
"version": "0.12.1",
"description": "A VuePress plugin to build API documentation with TypeDoc.",
"main": "./dist/v1/index.js",
"exports": {
".": "./dist/v1/index.js",
"./next": "./dist/v2/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",
"author": "Thomas Grey",
"scripts": {
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "yarn run lint && yarn run build",
"build": "rm -rf ./dist && tsc"
},
"peerDependencies": {
"typedoc": ">=0.24.0",
"typedoc-plugin-markdown": ">=3.15.0"
},
"devDependencies": {
"typedoc-plugin-markdown": ">=3.15.0"
},
"license": "MIT",
"keywords": [
"vuepress",
"vuepress-plugin",
"typedoc",
"markdown",
"typescript",
"api"
]
}