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
|
{
"name": "website-static",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro check && astro build",
"astro": "astro",
"format": "prettier --write .",
"format:dry": "prettier --check .",
"check": "astro check"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/compiler-rs": "^0.1.6",
"@astrojs/mdx": "^5.0.3",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@fontsource-variable/archivo": "^5.2.8",
"@iconify-json/tabler": "^1.2.33",
"astro": "^6.1.3",
"astro-compressor": "^1.3.0",
"astro-icon": "^1.1.5",
"rehype-external-links": "^3.0.0",
"typescript": "5.9.3"
},
"devDependencies": {
"@astrojs/language-server": "^2.13.4",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"sass": "^1.98.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "*",
"@emnapi/runtime": "*",
"@emnapi/core": "*"
},
"overrides": {
"lodash": "^4.17.21"
}
}
|