Files
pbakaus_impeccable/package.json
T
Paul BakausandClaude Opus 4.5 2181137d04 Consolidate skills + add patterns source file
Major changes:
- Consolidate 8 design skills into single frontend-design skill with 7 reference files
- Add source/patterns.md as single source of truth for patterns/antipatterns
- Patterns are merged into skill during build, served via API for website
- Website now dynamically renders both "What TO Do" and "What NOT to Do" sections
- Update build system to handle directory-based skills with references
- Add /api/patterns endpoint to server
- Refactor website with new Antidote section layout

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-15 14:08:30 -08:00

34 lines
770 B
JSON

{
"name": "vibe-design-plugins",
"version": "1.0.0",
"description": "Cross-provider design skills and commands for LLM-powered development tools",
"type": "module",
"scripts": {
"build": "bun run scripts/build.js",
"clean": "rm -rf dist",
"rebuild": "bun run clean && bun run build",
"dev": "bun run server/index.js",
"start": "bun --production run server/index.js",
"test": "bun test"
},
"keywords": [
"cursor",
"claude",
"gemini",
"codex",
"design",
"frontend",
"ux"
],
"author": "Paul Bakaus",
"license": "SEE LICENSE FILE",
"devDependencies": {
"bun-plugin-tailwind": "^0.1.2"
},
"dependencies": {
"lenis": "^1.3.16",
"motion": "^12.23.26",
"tailwindcss": "^4.1.18"
}
}