mirror of
https://github.com/supabase/agent-skills.git
synced 2026-01-26 19:09:51 +08:00
- Install Biome as the project formatter and linter
- Configure Biome with recommended settings
- Add format, lint, and check scripts to package.json
- Restore CI workflow from git history (commit 0a543e1)
- Extend CI with new Biome job for format and lint checks
- Apply Biome formatting to all TypeScript files
- Fix linting issues (use node: protocol, template literals, forEach pattern)
CI now runs on:
- All pushes to main branch
- All pull requests
Co-authored-by: Claude Sonnet 4.5 <noreply@anthropic.com>
19 lines
415 B
JSON
19 lines
415 B
JSON
{
|
|
"name": "postgres-best-practices-build",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"author": "Supabase",
|
|
"license": "MIT",
|
|
"description": "Build system for Supabase agent skills",
|
|
"scripts": {
|
|
"build": "tsx src/build.ts",
|
|
"validate": "tsx src/validate.ts",
|
|
"dev": "npm run validate && npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|