mirror of
https://github.com/pbakaus/impeccable.git
synced 2026-09-11 21:57:14 +03:00
- Add missing /api/patterns.js endpoint (was causing 404) - Fix Tailwind CSS: compile with @tailwindcss/cli instead of Bun virtual module - Update API handlers to use standard Vercel function export format - Configure vercel.json with proper Bun runtime (runtime: "bun@1") - Add @tailwindcss/cli to devDependencies - Add generated styles.css to .gitignore 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
36 lines
830 B
JSON
36 lines
830 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": {
|
|
"@tailwindcss/cli": "^4.1.18",
|
|
"bun-plugin-tailwind": "^0.1.2"
|
|
},
|
|
"dependencies": {
|
|
"lenis": "^1.3.16",
|
|
"motion": "^12.23.26",
|
|
"tailwindcss": "^4.1.18",
|
|
"three": "^0.182.0"
|
|
}
|
|
}
|