Files
termi-blog/package.json
limitcool 3628a46ed1
Some checks failed
docker-images / resolve-build-targets (push) Successful in 7s
ui-regression / playwright-regression (push) Failing after 13m47s
docker-images / build-and-push (push) Failing after 7s
docker-images / submit-indexnow (push) Has been skipped
feat: add SharePanel component for social sharing with QR code support
- Implemented SharePanel component in `SharePanel.astro` for sharing content on social media platforms.
- Integrated QR code generation for WeChat sharing using the `qrcode` library.
- Added localization support for English and Chinese languages.
- Created utility functions in `seo.ts` for building article summaries and FAQs.
- Introduced API routes for serving IndexNow key and generating full LLM catalog and summaries.
- Enhanced SEO capabilities with structured data for articles and pages.
2026-04-02 14:15:21 +08:00

21 lines
1.1 KiB
JSON

{
"name": "termi-blog-workspace",
"private": true,
"scripts": {
"dev": "powershell -ExecutionPolicy Bypass -File ./dev.ps1",
"dev:mcp": "powershell -ExecutionPolicy Bypass -File ./dev.ps1 -WithMcp",
"dev:frontend": "powershell -ExecutionPolicy Bypass -File ./dev.ps1 -Only frontend",
"dev:admin": "powershell -ExecutionPolicy Bypass -File ./dev.ps1 -Only admin",
"dev:backend": "powershell -ExecutionPolicy Bypass -File ./dev.ps1 -Only backend",
"dev:mcp-only": "powershell -ExecutionPolicy Bypass -File ./dev.ps1 -Only mcp",
"test:ui": "pnpm --dir ./playwright-smoke test",
"test:ui:frontend": "pnpm --dir ./playwright-smoke test:frontend",
"test:ui:admin": "pnpm --dir ./playwright-smoke test:admin",
"test:ui:headed": "pnpm --dir ./playwright-smoke test:headed",
"test:ui:install-browsers": "pnpm --dir ./playwright-smoke install:browsers",
"indexnow:submit": "pnpm --dir ./frontend run indexnow:submit",
"stop": "powershell -ExecutionPolicy Bypass -File ./stop-services.ps1",
"restart": "powershell -ExecutionPolicy Bypass -File ./restart-services.ps1"
}
}