-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 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
{
"name": "typedoc-plugin-frontmatter",
"version": "1.3.0",
"description": "A plugin for TypeDoc ( + typedoc-plugin-markdown ) that prepends configurable frontmatter to page content.",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run build && npm run test",
"prebuild": "rm -rf dist && prebuild-options",
"build": "tsc",
"build-and-test": "npm run build && npm run test",
"pretest": "tsx ./test/__scripts__/prepare.ts",
"test": "jest",
"test:update": "npm run build && npm run test -- -u"
},
"author": "Tom Grey",
"license": "MIT",
"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-plugin-frontmatter"
},
"homepage": "https://typedoc-plugin-markdown.org/plugins/frontmatter",
"dependencies": {
"yaml": "^2.7.0"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.6.0"
},
"keywords": [
"frontmatter",
"typedoc"
]
}