-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
38 lines (38 loc) · 1.09 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
{
"name": "typedoc-vitepress-theme",
"version": "1.0.2",
"description": "A TypeDoc ( + typedoc-plugin-markdown ) theme that generates Markdown compatible with VitePress.",
"main": "./dist/index.js",
"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/typedoc-vitepress-theme"
},
"homepage": "https://typedoc-plugin-markdown.org/plugins/vitepress",
"author": "Thomas Grey",
"scripts": {
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run build",
"prebuild": "rm -rf dist && prebuild-options",
"build": "tsc",
"build-and-test": "npm run build && npm run test",
"pretest": "ts-node ./test/__scripts__/prepare.ts",
"test": "jest",
"test:update": "npm run build && npm test -- -u"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.1.0"
},
"license": "MIT",
"keywords": [
"vitepress",
"vuepress",
"typedoc"
]
}