This repository has been archived by the owner on May 30, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "remark-mdx-code-meta",
"version": "2.0.0",
"description": "A remark MDX plugin for using markdown code block metadata",
"author": "Remco Haszing <[email protected]>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/remcohaszing/remark-mdx-code-meta.git"
},
"bugs": {
"url": "https://github.com/remcohaszing/remark-mdx-code-meta/issues"
},
"homepage": "https://github.com/remcohaszing/remark-mdx-code-meta#readme",
"keywords": [
"markdown",
"mdast",
"mdx",
"remark",
"remark-plugin",
"unified"
],
"files": [
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepack": "tsc --noEmit false",
"start": "tsx watch test.ts",
"test": "c8 tsx test.ts"
},
"dependencies": {
"@types/mdast": "^3.0.0",
"acorn": "^8.0.0",
"acorn-jsx": "^5.0.0",
"estree-util-is-identifier-name": "^2.0.0",
"hast-util-to-string": "^2.0.0",
"unified": "^10.0.0",
"unist-util-visit": "^4.0.0"
},
"devDependencies": {
"@mdx-js/mdx": "^2.0.0",
"@types/estree": "^0.0.52",
"@types/node": "^18.0.0",
"@types/prettier": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"c8": "^7.0.0",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^5.0.0",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"mdast-util-mdx": "^2.0.0",
"prettier": "^2.0.0",
"to-vfile": "^7.0.0",
"tsx": "^3.0.0",
"typescript": "^4.0.0",
"uvu": "^0.5.0"
}
}