Complete residential site build with Docker Compose & Gitea Actions deployment

This commit is contained in:
CalebLewallen
2026-05-13 17:31:20 -04:00
parent f9c4e13a50
commit 3c22823f72
19354 changed files with 2097331 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
{
"name": "astro-seo",
"version": "1.1.0",
"description": "Makes it easy to add SEO relevant tags to your Astro app.",
"homepage": "https://github.com/jonasmerlin/astro-seo#readme",
"bugs": {
"url": "https://github.com/jonasmerlin/astro-seo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jonasmerlin/astro-seo"
},
"files": [
"index.ts",
"src/index.ts",
"src/SEO.astro",
"src/components"
],
"exports": "./index.ts",
"keywords": [
"astro-component",
"seo"
],
"author": "Jonas Schumacher",
"license": "MIT",
"scripts": {
"cypress:open": "cypress open",
"dev": "astro dev",
"build": "astro check && tsc --noEmit && astro build",
"start": "astro preview",
"format": "prettier -w ./src",
"check:format": "prettier -c ./src",
"release": "standard-version",
"check": "astro check"
},
"devDependencies": {
"astro": "^5.16.0",
"cypress": "^13.0.0",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"standard-version": "^9.5.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@astrojs/check": "^0.9.0"
}
}