forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.01 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
{
"name": "docusaurus-plugin-typedoc",
"version": "1.0.0-next.15",
"description": "A Docusaurus v2 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/docusaurus-plugin-typedoc"
},
"homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/docusaurus-plugin-typedoc",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.0.0-next.19"
},
"scripts": {
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "npm run lint && npm run build",
"build": "rm -rf ./dist && tsc"
},
"author": "Thomas Grey",
"license": "MIT",
"keywords": [
"docusaurus",
"typedoc",
"plugin",
"markdown",
"typescript",
"api"
],
"dependencies": {
"@docusaurus/types": "^2.4.1"
}
}