-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 977 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 977 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
27
28
29
30
31
32
33
34
35
{
"name": "teddschreiner-de",
"version": "1.0.0",
"description": "Personal Brand Website von Tedd Schreiner",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"stop:dev": "powershell -ExecutionPolicy Bypass -File ./scripts/stop-dev.ps1",
"generate:og": "node scripts/generate-og-image.mjs",
"check:og": "node scripts/generate-og-image.mjs --check",
"prebuild": "npm run generate:og",
"check": "astro check",
"build": "astro build",
"quality": "npm run check && npm run build && npm run check:og",
"preview": "astro preview"
},
"engines": {
"node": ">=22.12.0",
"npm": ">=10.0.0"
},
"dependencies": {
"@astrojs/mdx": "^7.0.2",
"@astrojs/rss": "^4.0.19",
"@tailwindcss/vite": "^4.3.2",
"astro": "^7.0.6",
"sharp": "^0.35.3",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@types/node": "^26.1.0"
}
}