-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "@microflash/remark-callout-directives",
"version": "4.3.2",
"description": "remark plugin to render callouts and admonitions with directives",
"license": "MIT",
"keywords": [
"unified",
"remark",
"remark-plugin",
"plugin",
"markdown",
"directives",
"callouts",
"admonitions"
],
"repository": "https://github.com/Microflash/remark-callout-directives.git",
"bugs": "https://github.com/Microflash/remark-callout-directives/issues",
"homepage": "https://github.com/Microflash/remark-callout-directives#readme",
"author": "Naiyer Asif (https://www.naiyerasif.com)",
"type": "module",
"main": "index.js",
"files": [
"index.js",
"themes/**/*"
],
"exports": {
".": "./index.js",
"./config/github": "./themes/github/index.js",
"./config/vitepress": "./themes/vitepress/index.js",
"./theme/github": "./themes/github/index.css",
"./theme/microflash": "./themes/microflash/index.css",
"./theme/vitepress": "./themes/vitepress/index.css"
},
"scripts": {
"test": "vitest plugin"
},
"dependencies": {
"defu": "^6.1.4",
"hastscript": "^9.0.0",
"mdast-util-from-markdown": "^2.0.2",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"rehype-stringify": "^10.0.1",
"remark-directive": "^3.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.1",
"unified": "^11.0.5",
"vitest": "^2.1.3"
},
"packageManager": "pnpm@9.12.2"
}