Files
pbakaus_impeccable/package.json
T
Paul BakausandClaude Opus 4.6 209444a9d5 Bump version to 2.0.2
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-30 13:40:01 -07:00

63 lines
1.7 KiB
JSON

{
"name": "impeccable",
"version": "2.0.2",
"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"
}
}