Files
pbakaus_impeccable/package.json
T
Paul BakausandClaude Opus 4.6 da8a59e981 Add skills subcommand and fix npm metadata
New `impeccable skills` CLI with three subcommands:
- `skills help`: fetches and displays all 20 commands from the API
- `skills install`: delegates to `npx skills add pbakaus/impeccable`
- `skills update`: tries `npx skills update` first; if skills aren't
  managed by the skills CLI, downloads the universal bundle from
  impeccable.style and overwrites provider folders directly, with
  git-based modification detection and confirmation prompt

Also fixes npm metadata: homepage -> impeccable.style, license -> Apache-2.0

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 13:04:43 -07:00

63 lines
1.7 KiB
JSON

{
"name": "impeccable",
"version": "2.0.1",
"author": "Paul Bakaus",
"bin": {
"impeccable": "./bin/impeccable"
},
"files": [
"bin/",
"source/skills/critique/scripts/detect-antipatterns.mjs",
"source/skills/critique/scripts/detect-antipatterns-browser.js",
"lib/download-providers.js",
"LICENSE"
],
"dependencies": {
"jsdom": "^29.0.0"
},
"optionalDependencies": {
"puppeteer": "^24.39.1"
},
"description": "Detect UI anti-patterns and design quality issues from the command line",
"keywords": [
"design",
"frontend",
"ux",
"anti-patterns",
"lint",
"accessibility",
"css",
"html",
"cli"
],
"license": "Apache-2.0",
"homepage": "https://impeccable.style",
"repository": {
"type": "git",
"url": "git+https://github.com/pbakaus/impeccable.git"
},
"engines": {
"node": ">=18"
},
"scripts": {
"prepublishOnly": "cp README.md README.bak.md && cp README.npm.md README.md",
"postpublish": "mv README.bak.md README.md",
"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 tests/build.test.js tests/detect-antipatterns.test.js && node --test tests/detect-antipatterns-fixtures.test.mjs",
"screenshot": "bun run scripts/screenshot-antipatterns.js",
"og-image": "bun run scripts/generate-og-image.js"
},
"type": "module",
"devDependencies": {
"archiver": "^7.0.1",
"motion": "^12.38.0",
"playwright": "^1.58.2",
"wrangler": "^4.75.0"
}
}