-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 879 Bytes
/
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
{
"name": "mdx-annotations",
"version": "0.1.4",
"description": "Markdoc-style annotations for MDX",
"author": "Brad Cornes",
"license": "MIT",
"homepage": "https://github.com/bradlc/mdx-annotations#readme",
"repository": {
"type": "git",
"url": "https://github.com/bradlc/mdx-annotations.git"
},
"bugs": {
"url": "https://github.com/bradlc/mdx-annotations/issues"
},
"type": "module",
"main": "index.js",
"files": [
"index.js"
],
"keywords": [
"mdx",
"remark",
"rehype",
"recma",
"markdoc"
],
"scripts": {
"test": "node test.js"
},
"devDependencies": {
"@mdx-js/mdx": "^2.3.0",
"@mdx-js/mdx-v3": "npm:@mdx-js/mdx@^3.0.0",
"remark-gfm": "^3.0.1",
"uvu": "^0.5.6"
},
"dependencies": {
"acorn": "^8.8.1",
"estree-util-visit": "^1.2.0",
"unist-util-visit": "^4.1.1"
}
}