-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.31 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "rehype-inline-code-classname",
"version": "1.0.10",
"description": "A rehype plugin to support adding className to inline code blocks",
"author": "Pedro Marquez <pedro.f.marquez.soto@gmail.com>",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/pfernandom/rehype-inline-code-classname.git"
},
"bugs": {
"url": "https://github.com/pfernandom/rehype-inline-code-classname/issues"
},
"homepage": "https://github.com/pfernandom/rehype-inline-code-classname#readme",
"keywords": [
"frontmatter",
"markdown",
"markdown-frontmatter",
"mdast",
"mdx",
"remark",
"remark-plugin",
"toml",
"unified",
"xdm",
"yaml"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"prepare": "npm test && npm run build",
"build": "tsc --noEmit false",
"prepack": "tsc --noEmit false",
"test": "mocha",
"debug-test": "DEBUG='test.spec.js' npx mocha"
},
"moduleResolution": "node",
"dependencies": {
"@mdx-js/node-loader": "^2.3.0",
"@types/mdast": "^3.0.0",
"estree-util-is-identifier-name": "^2.0.0",
"estree-util-value-to-estree": "^1.0.0",
"hast": "^1.0.0",
"mdast-util-from-markdown": "^1.2.0",
"mdast-util-to-hast": "^12.2.1",
"mdx-to-md": "^0.3.2",
"unified": "^10.0.0",
"unist-util-visit": "^4.1.1"
},
"devDependencies": {
"@mapbox/rehype-prism": "^0.7.0",
"@mdx-js/mdx": "^2.1.3",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"c8": "^5.0.2",
"chai": "^4.3.6",
"eslint": "^8.0.0",
"eslint-config-remcohaszing": "^9.0.3",
"eslint-plugin-jsx-a11y": "^6.0.0",
"eslint-plugin-react": "^7.0.0",
"jest": "^25.0.0",
"mdast-util-mdx": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "^2.0.0",
"rehype-document": "^6.1.0",
"rehype-format": "^4.0.1",
"rehype-parse": "^8.0.4",
"rehype-stringify": "^9.0.3",
"remark-frontmatter": "^4.0.0",
"to-vfile": "^7.2.3",
"ts-node": "^10.9.1",
"tsx": "^3.0.0",
"typescript": "^4.8.2",
"uvu": "^0.5.0",
"vfile-reporter": "^7.0.4"
}
}