-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.97 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
{
"name": "blog",
"private": true,
"version": "0.0.1",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build:packages": "npm run build --workspaces --if-present",
"prebuild": "npm run build:packages",
"build": "astro build",
"dev": "astro dev",
"preview": "astro preview",
"format": "prettier --write .",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "5.0.6",
"@astrojs/react": "5.0.5",
"@astrojs/ts-plugin": "1.10.9",
"@blog/rehype-code-directives": "workspace:*",
"@blog/rehype-tree-sitter": "workspace:*",
"@blog/rss": "workspace:*",
"@blog/sitemap": "workspace:*",
"@fontsource-variable/inter-tight": "^5.2.7",
"@fontsource-variable/lexend": "^5.2.11",
"@fontsource/maple-mono": "^5.2.6",
"@mdx-js/react": "^3.1.1",
"@mdx-js/rollup": "^3.1.1",
"@myriaddreamin/rehype-typst": "^0.7.0-rc2",
"astro": "6.3.5",
"astro-rehype-relative-markdown-links": "^0.19.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-html": "^9.0.5",
"html-react-parser": "^6.1.1",
"lucide-react": "^1.16.0",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"rehype-autolink-headings": "^7.1.0",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-mdx-frontmatter": "^5.2.0",
"remark-rehype": "^11.1.2",
"sass": "^1.99.0",
"sharp": "^0.34.5",
"typescript": "~6.0.3",
"typescript-eslint": "^8.59.4",
"unist-util-visit": "^5.1.0",
"zod": "4.4.3"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.13",
"@types/mdx": "^2.0.13",
"@types/node": "^25.9.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"esbuild": "^0.28.0",
"globals": "^17.6.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"typescript-plugin-css-modules": "^5.2.0"
}
}