-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.6 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
65
66
67
68
69
70
71
72
{
"name": "@microflash/rehype-starry-night",
"version": "7.2.1",
"description": "rehype plugin to highlight codeblocks with Starry Night",
"license": "MIT",
"keywords": [
"unified",
"rehype",
"rehype-plugin",
"plugin",
"markdown",
"syntax",
"highlighting",
"starry-night",
"vscode-textmate"
],
"repository": "https://github.com/Microflash/rehype-starry-night.git",
"bugs": "https://github.com/Microflash/rehype-starry-night/issues",
"homepage": "https://github.com/Microflash/rehype-starry-night#readme",
"author": "Naiyer Asif (https://www.naiyerasif.com)",
"type": "module",
"main": "src/rehype-starry-night/index.js",
"exports": {
".": "./src/rehype-starry-night/index.js",
"./plugins/header-language-plugin": "./src/rehype-starry-night/plugins/header-language-plugin.js",
"./plugins/header-title-plugin": "./src/rehype-starry-night/plugins/header-title-plugin.js",
"./plugins/line-del-plugin": "./src/rehype-starry-night/plugins/line-del-plugin.js",
"./plugins/line-ins-plugin": "./src/rehype-starry-night/plugins/line-ins-plugin.js",
"./plugins/line-mark-plugin": "./src/rehype-starry-night/plugins/line-mark-plugin.js",
"./plugins/line-prompt-plugin": "./src/rehype-starry-night/plugins/line-prompt-plugin.js",
"./plugins/line-output-plugin": "./src/rehype-starry-night/plugins/line-output-plugin.js",
"./remark-inline-code-lang": "./src/remark-inline-code-lang/index.js",
"./rehype-starry-night-inline": "./src/rehype-starry-night-inline/index.js",
"./css": "./src/index.css",
"./props": "./src/props.css"
},
"files": [
"src/index.css",
"src/props.css",
"src/rehype-starry-night/index.js",
"src/rehype-starry-night/plugins/header-title-plugin.js",
"src/rehype-starry-night/plugins/header-language-plugin.js",
"src/rehype-starry-night/plugins/line-del-plugin.js",
"src/rehype-starry-night/plugins/line-ins-plugin.js",
"src/rehype-starry-night/plugins/line-mark-plugin.js",
"src/rehype-starry-night/plugins/line-prompt-plugin.js",
"src/rehype-starry-night/plugins/line-output-plugin.js",
"src/remark-inline-code-lang/index.js",
"src/rehype-starry-night-inline/index.js"
],
"scripts": {
"test": "vitest plugin"
},
"dependencies": {
"@microflash/fenceparser": "^3.1.0",
"@wooorm/starry-night": "^3.6.0",
"defu": "^6.1.4",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"cheerio": "1.0.0",
"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.8"
},
"packageManager": "pnpm@9.15.2"
}