This repository was archived by the owner on Mar 23, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "remark-mdx-images",
"version": "3.0.0",
"description": "A remark plugin for changing image sources to JavaScript imports using MDX",
"exports": "./index.js",
"type": "module",
"files": [
"index.*"
],
"scripts": {
"prepack": "tsc --build",
"pretest": "tsc --build",
"test": "c8 node --test"
},
"author": "Remco Haszing <remcohaszing@gmail.com>",
"license": "MIT",
"repository": "remcohaszing/remark-mdx-images",
"bugs": "https://github.com/remcohaszing/remark-mdx-images/issues",
"homepage": "https://github.com/remcohaszing/remark-mdx-images#readme",
"funding": "https://github.com/sponsors/remcohaszing",
"keywords": [
"markdown",
"mdast",
"mdx",
"remark",
"remark-plugin",
"unified"
],
"dependencies": {
"@types/mdast": "^4.0.0",
"unified": "^11.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^3.0.0",
"@types/estree": "^1.0.0",
"@types/node": "^20.0.0",
"c8": "^8.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^10.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"mdast-util-mdx": "^3.0.0",
"prettier": "^3.0.0",
"remark-cli": "^11.0.0",
"remark-preset-remcohaszing": "^2.0.0",
"typescript": "^5.0.0"
}
}