-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
46
47
48
49
50
51
52
53
54
{
"name": "rehype-mdx-code-props",
"version": "3.0.1",
"description": "A rehype MDX plugin for interpreting markdown code meta as props",
"author": "Remco Haszing <remcohaszing@gmail.com>",
"license": "MIT",
"type": "module",
"main": "./dist/rehype-mdx-code-props.js",
"exports": "./dist/rehype-mdx-code-props.js",
"repository": "remcohaszing/rehype-mdx-code-props",
"bugs": "https://github.com/remcohaszing/rehype-mdx-code-props/issues",
"homepage": "https://github.com/remcohaszing/rehype-mdx-code-props#readme",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"hast",
"html",
"markdown",
"mdx",
"rehype",
"rehype-plugin",
"unified"
],
"files": [
"dist",
"src",
"!test*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --enable-source-maps dist/test.js"
},
"dependencies": {
"@types/hast": "^3.0.0",
"hast-util-properties-to-mdx-jsx-attributes": "^1.0.0",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-mdx": "^3.0.0",
"micromark-extension-mdxjs": "^3.0.0",
"unified": "^11.0.0",
"unist-util-visit-parents": "^6.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^3.0.0",
"@remcohaszing/eslint": "^14.0.0",
"@types/node": "^25.0.0",
"c8": "^9.0.0",
"mdast-util-mdx-jsx": "^3.0.0",
"prettier": "^3.0.0",
"remark-cli": "^12.0.0",
"remark-preset-remcohaszing": "^3.0.0",
"snapshot-fixtures": "^1.0.0",
"typescript": "^6.0.0"
}
}