-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 806 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 806 Bytes
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
{
"name": "site",
"type": "module",
"version": "0.0.1",
"engines": {
"node": ">=22.12.0"
},
"scripts": {
"assets:check": "bash scripts/optimize-assets.sh && git diff --exit-code -- public content src README.md CONTRIBUTING.md scripts package.json .github/workflows",
"assets:optimize": "bash scripts/optimize-assets.sh",
"contributors:update": "node scripts/update-contributors.mjs",
"predev": "node scripts/prep-content.mjs",
"dev": "astro dev",
"prebuild": "node scripts/prep-content.mjs",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.2.4",
"astro": "^6.2.2",
"tailwindcss": "^4.2.4",
"unist-util-visit": "^5.1.0"
}
}