Merge branch 'main' into feat-typescriptify

This commit is contained in:
André B
2024-08-29 15:59:13 -04:00
committed by GitHub
3 changed files with 892 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@onwidget/astrowind",
"version": "1.0.0-beta.41",
"version": "1.0.0-beta.42",
"description": "AstroWind: A free template using Astro 4.0 and Tailwind CSS. Astro starter theme.",
"type": "module",
"private": true,
@@ -13,8 +13,13 @@
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier -w .",
"lint:eslint": "eslint ."
"check": "npm run check:astro && npm run check:eslint && npm run check:prettier",
"check:astro": "astro check",
"check:eslint": "eslint .",
"check:prettier": "prettier --check .",
"fix": "npm run fix:eslint && npm run fix:prettier",
"fix:eslint": "eslint --fix .",
"fix:prettier": "prettier -w ."
},
"dependencies": {
"@astrojs/rss": "^4.0.7",
@@ -30,6 +35,7 @@
"unpic": "^3.18.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.3",
"@astrojs/mdx": "^3.1.4",
"@astrojs/partytown": "^2.1.1",
"@astrojs/tailwind": "5.1.0",