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
78
79
80
81
82
83
84
85
86
|
{
"name": "rycerzxyz",
"version": "6.6.0",
"private": false,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"postbuild": "pagefind --site dist",
"preview": "astro preview",
"deploy": "pnpm run build && pnpm run postbuild && npx wrangler pages deploy --project-name rycerzxyz dist/",
"lint": "biome lint .",
"format": "pnpm run format:code && pnpm run format:imports",
"format:code": "biome format . --write && prettier -w \"**/*\" \"!**/*.{md,mdx}\" --ignore-unknown --cache",
"format:imports": "biome check --formatter-enabled=false --write",
"check": "astro check",
"prepare": "husky",
"test:pre-commit": ".husky/pre-commit",
"import:mastodon": "npx tsx scripts/import-mastodon.ts"
},
"dependencies": {
"@astrojs/markdown-remark": "^6.3.2",
"@astrojs/mdx": "4.3.0",
"@astrojs/rss": "4.0.12",
"@astrojs/sitemap": "3.4.1",
"@tailwindcss/vite": "4.1.11",
"astro": "5.10.1",
"astro-expressive-code": "^0.41.2",
"astro-icon": "^1.1.5",
"astro-robots-txt": "^1.0.0",
"astro-webmanifest": "^1.0.0",
"cssnano": "^7.0.7",
"hastscript": "^9.0.0",
"marked": "^16.0.0",
"mdast-util-directive": "^3.0.0",
"mdast-util-to-markdown": "^2.1.2",
"mdast-util-to-string": "^4.0.0",
"medium-zoom": "^1.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-external-links": "^3.0.0",
"rehype-stringify": "^10.0.1",
"rehype-unwrap-images": "^1.0.0",
"remark-directive": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"sanitize-html": "^2.17.0",
"satori": "0.15.2",
"satori-html": "^0.3.2",
"sharp": "^0.34.2",
"turndown": "^7.2.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@biomejs/biome": "^2.0.6",
"@iconify-json/mdi": "^1.2.2",
"@pagefind/default-ui": "^1.3.0",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/typography": "^0.5.16",
"@types/hast": "^3.0.4",
"@types/mdast": "^4.0.4",
"@types/sanitize-html": "^2.16.0",
"@types/turndown": "^5.0.5",
"autoprefixer": "^10.4.21",
"husky": "^9.1.7",
"pagefind": "^1.3.0",
"prettier": "^3.6.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "4.1.11",
"typescript": "^5.8.3",
"wrangler": "^4.59.0"
},
"pnpm": {
"overrides": {
"sharp": "^0.34.2"
},
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"sharp"
]
}
}
|