-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.31 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
{
"name": "blog",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@astrojs/mdx": "^2.3.1",
"@astrojs/rss": "^4.0.10",
"@astrojs/sitemap": "^3.2.1",
"@playform/compress": "^0.0.13",
"dayjs": "^1.11.13",
"katex": "^0.16.18",
"rehype-katex": "^7.0.1",
"remark-emoji": "^4.0.1",
"remark-math": "^6.0.0",
"to-jyutping": "^1.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.5.10",
"@unocss/reset": "^0.61.9",
"astro": "^4.16.18",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-md-nocjsp": "^1.5.1",
"typescript": "^5.7.2",
"unocss": "^0.61.9"
},
"prettier": {
"plugins": [
"prettier-plugin-astro",
"prettier-plugin-md-nocjsp"
],
"htmlWhitespaceSensitivity": "ignore",
"bracketSameLine": false,
"printWidth": 120,
"overrides": [
{
"files": [
"*.md",
"README"
],
"options": {
"parser": "markdown-nocjsp"
}
},
{
"files": [
"*.mdx"
],
"options": {
"parser": "mdx-nocjsp"
}
}
]
}
}