Files
pbakaus_impeccable/package.json
T
Paul BakausandClaude Opus 4.6 32a54138bb Add deep detection via jsdom and URL scanning via Puppeteer
Three detection tiers:
- file/dir (default): fast regex scan, zero dependencies
- file + --deep: jsdom computed styles, resolves linked local stylesheets
  by inlining <link rel="stylesheet"> content before parsing
- URL (https://...): auto-launches Puppeteer for full browser rendering,
  handles CDN stylesheets, JS-rendered content, everything

New exports: detectAntiPatternsDeep(), detectAntiPatternsUrl()
jsdom added as devDependency; puppeteer remains optional (npx cache).

TDD: linked-stylesheet fixture demonstrates the gap — regex finds 0
border issues, --deep correctly catches side-tab and top-accent from
the external CSS file.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 11:07:47 -07:00

38 lines
966 B
JSON

{
"name": "impeccable",
"version": "1.5.1",
"author": "Paul Bakaus",
"dependencies": {
"archiver": "^7.0.1",
"motion": "^12.23.26",
"playwright": "^1.57.0"
},
"description": "Cross-provider design skills and commands for LLM-powered development tools",
"keywords": [
"cursor",
"claude",
"gemini",
"codex",
"design",
"frontend",
"ux"
],
"license": "SEE LICENSE FILE",
"scripts": {
"build": "bun run scripts/build.js",
"clean": "rm -rf dist build",
"rebuild": "bun run clean && bun run build",
"dev": "bun run server/index.js",
"preview": "bun run build && wrangler pages dev",
"deploy": "bun run build && wrangler pages deploy build/",
"test": "bun test",
"screenshot": "bun run scripts/screenshot-antipatterns.js",
"og-image": "bun run scripts/generate-og-image.js"
},
"type": "module",
"devDependencies": {
"jsdom": "^29.0.0",
"wrangler": "^4.71.0"
}
}