forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.07 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
{
"name": "typedoc-github-wiki-theme",
"version": "2.0.0-next.2",
"description": "A typedoc-plugin-markdown theme that publishes Markdown pages compatible with Github Wiki.",
"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/typedoc-github-wiki-theme"
},
"homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/typedoc-github-wiki-theme",
"scripts": {
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "npm run lint && npm run build",
"build": "rm -rf ./dist && tsc",
"docs": "rm -rf ./demo && npm run build && typedoc --options ../../stubs/typedoc.1.js --plugin typedoc-plugin-markdown --plugin ./dist/index --out ./out"
},
"author": "Thomas Grey",
"license": "MIT",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.0.0-next.13"
},
"keywords": [
"typedoc",
"githubwiki"
]
}