-
Notifications
You must be signed in to change notification settings - Fork 179
/
package.json
45 lines (45 loc) · 1.23 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": "typedoc-plugin-remark",
"version": "1.2.4",
"description": "A plugin for TypeDoc ( + typedoc-plugin-markdown ) that enables additional markdown transformations with remark plugins.",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint ./src",
"prepublishOnly": "npm run lint && npm run build",
"prebuild": "rm -rf dist && prebuild-options",
"build": "tsc",
"build-and-run": "npm run build && npm run pretest",
"pretest": "tsx ./test/__scripts__/prepare.ts",
"test": "jest",
"test:update": "npm run build && npm run test -- -u"
},
"repository": {
"type": "git",
"url": "git+https://github.com/typedoc2md/typedoc-plugin-markdown.git",
"directory": "packages/typedoc-plugin-remark"
},
"homepage": "https://typedoc-plugin-markdown.org/plugins/remark",
"author": "Thomas Grey",
"license": "MIT",
"dependencies": {
"remark": "^15.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.1.0",
"to-vfile": "^8.0.0",
"unist-util-visit": "^5.0.0"
},
"peerDependencies": {
"typedoc-plugin-markdown": ">=4.4.1"
},
"keywords": [
"typedoc",
"remark"
]
}