-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathpackage.json
45 lines (45 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
41
42
43
44
45
{
"name": "docusaurus-plugin-typedoc",
"version": "1.2.1",
"description": "A Docusaurus plugin to integrate TypeDoc ( + typedoc-plugin-markdown ) into a Docusaurus project.",
"exports": {
".": "./dist/index.js",
"./typedoc": "./dist/plugins/typedoc.js"
},
"type": "module",
"files": [
"dist/"
],
"bugs": {
"url": "https://github.com/typedoc2md/typedoc-plugin-markdown/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typedoc2md/typedoc-plugin-markdown.git",
"directory": "packages/docusaurus-plugin-typedoc"
},
"homepage": "http://typedoc-plugin-markdown.org/plugins/docusaurus",
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.4.0"
},
"scripts": {
"lint": "eslint ./src",
"prebuild": "rm -rf dist && prebuild-options",
"prepublishOnly": "npm run lint && npm run build",
"build": "tsc",
"pretest": "rm -rf ./test/out && docusaurus generate-typedoc",
"test": "jest",
"test:update": "npm run build && npm test -- -u"
},
"author": "Thomas Grey",
"license": "MIT",
"keywords": [
"docusaurus",
"typedoc",
"plugin"
],
"devDependencies": {
"@docusaurus/core": "^3.6.1",
"@docusaurus/types": "^3.6.1"
}
}