Initialize project with general functionality

This commit is contained in:
thiloho
2025-04-26 09:13:54 +02:00
commit 69be9d8ab7
42 changed files with 6368 additions and 0 deletions

22
package.json Normal file
View File

@@ -0,0 +1,22 @@
{
"name": "thiloho-github-io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . --write"
},
"dependencies": {
"@tailwindcss/vite": "4.1.4",
"astro": "5.7.5",
"tailwindcss": "4.1.4"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.16",
"prettier": "3.5.3",
"prettier-plugin-astro": "0.14.1"
}
}