-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.4 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
73
74
75
76
77
{
"name": "mdx-svelte",
"version": "4.0.1",
"description": "MDX for Svelte. Svelte in Markdown. A Markdown preprocessor for Svelte. A Preprocessor for Svelte that allows you to write Svelte code inside Markdown files.",
"license": "MIT",
"repository": "github:babakfp/mdx-svelte",
"homepage": "https://babakfp.ir/docs/mdx-svelte",
"main": "./dist/index.js",
"scripts": {
"dev": "rimraf dist && tsc -w",
"build": "rimraf dist && tsc",
"prepublishOnly": "rimraf dist && tsc",
"format": "prettier -w .",
"test": "vitest"
},
"peerDependencies": {
"@sveltejs/kit": "2",
"svelte": "5"
},
"dependencies": {
"hast-util-from-html": "2.0.3",
"hast-util-select": "6.0.3",
"rehype-autolink-headings": "7.1.0",
"rehype-external-links": "3.0.0",
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"rehype-stringify": "10.0.1",
"rehype-unwrap-images": "1.0.0",
"remark-directive": "3.0.0",
"remark-frontmatter": "5.0.0",
"remark-frontmatter-yaml": "1.3.0",
"remark-gfm": "4.0.0",
"remark-parse": "11.0.0",
"remark-rehype": "11.1.1",
"remark-toc": "9.0.0",
"stringify-entities": "4.0.4",
"unified": "11.0.5",
"unist-util-remove-position": "5.0.0",
"unist-util-visit": "5.0.0",
"zod": "3.23.8"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "4.4.0",
"@sveltejs/kit": "2.9.0",
"@types/hast": "3.0.4",
"@types/mdast": "4.0.4",
"@types/node": "22.10.1",
"hast-util-to-html": "9.0.3",
"mdast-util-directive": "3.0.0",
"prettier": "3.4.1",
"rimraf": "6.0.1",
"svelte": "5.5.3",
"typescript": "5.7.2",
"vfile": "6.0.3",
"vitest": "2.1.8"
},
"files": [
"./dist/",
"./src/transformers/unified/plugins/remark-github-alerts/styles/"
],
"exports": {
".": "./dist/index.js",
"./unified": "./dist/transformers/unified/index.js",
"./unified/remark-github-alerts/*": "./src/transformers/unified/plugins/remark-github-alerts/styles/*"
},
"keywords": [
"svelte",
"markdown",
"preprocess",
"preprocessor",
"mdx",
"mdsvex",
"sveltekit",
"kit"
],
"type": "module"
}