-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.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
{
"name": "@starheart/blog",
"version": "0.0.1",
"packageManager": "[email protected]",
"private": true,
"scripts": {
"astro": "astro",
"build": "astro build",
"start": "astro dev",
"format": "pnpm run format:code",
"format:code": "prettier --write . --cache --plugin-search-dir=.",
"format:package": "pnpx sort-package-json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"preview": "astro preview"
},
"devDependencies": {
"@astrojs/markdown-remark": "^6.1.0",
"@astrojs/mdx": "^4.0.8",
"@astrojs/preact": "^4.0.4",
"@astrojs/rss": "^4.0.11",
"@astrojs/sitemap": "^3.2.1",
"@eslint/js": "^9.19.0",
"@iconify/json": "^2.2.303",
"@tailwindcss/typography": "^0.5.16",
"@tailwindcss/vite": "^4.0.3",
"astro": "^5.2.5",
"astro-compress": "^2.3.6",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.14.0",
"mdast-util-to-string": "^4.0.0",
"preact": "^10.25.4",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"reading-time": "^1.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"remark-toc": "^9.0.0",
"rollup": "^4.34.4",
"shiki": "^2.3.1",
"tailwindcss": "^4.0.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"unplugin-icons": "^22.0.0"
},
"pnpm": {
"patchedDependencies": {
"rehype-pretty-code": "patches/rehype-pretty-code.patch"
},
"onlyBuiltDependencies": [
"esbuild",
"sharp"
]
}
}