mirror of
https://github.com/veeso/termscp.git
synced 2026-07-02 12:44:12 +02:00
Add Site GitHub Actions workflow running prettier format check, astro check, tests, and build on changes under site/. Wire prettier into the site package with config, ignore, and scripts, and format existing sources.
29 lines
691 B
JSON
29 lines
691 B
JSON
{
|
|
"name": "termscp-site",
|
|
"type": "module",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"predev": "node scripts/copy-install.mjs",
|
|
"dev": "astro dev",
|
|
"prebuild": "node scripts/copy-install.mjs",
|
|
"build": "astro build",
|
|
"preview": "astro preview",
|
|
"check": "astro check",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check ."
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/sitemap": "^3.2.0",
|
|
"astro": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@astrojs/check": "^0.9.9",
|
|
"@tailwindcss/vite": "^4.0.0",
|
|
"prettier": "3.8.3",
|
|
"prettier-plugin-astro": "0.14.1",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|