forked from typedoc2md/typedoc-plugin-markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.26 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": "typedoc-gitlab-wiki-theme",
"version": "1.1.1",
"description": "An extension of the default theme from typedoc-plugin-markdown to create a compatible file structure for GitLab Wiki pages.",
"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-gitlab-wiki-theme"
},
"homepage": "https://github.com/tgreyuk/typedoc-plugin-markdown/tree/master/packages/typedoc-gitlab-wiki-theme",
"scripts": {
"lint": "eslint ./src --ext .ts",
"prepublishOnly": "yarn run lint && yarn run build",
"build": "rm -rf ./dist && tsc",
"demo": "rm -rf ./demo && yarn run build && typedoc --plugin typedoc-plugin-markdown --plugin typedoc-gitlab-wiki-theme --options ../../stub-project/typedoc-options.json --out ./demo"
},
"author": "Thomas Grey",
"license": "MIT",
"peerDependencies": {
"typedoc": ">=0.24.0",
"typedoc-plugin-markdown": ">=3.15.0"
},
"devDependencies": {
"typedoc-plugin-markdown": "^3.15.0"
},
"keywords": [
"typedoc",
"typedoc-theme",
"gitlab",
"wiki",
"markdown"
]
}