ui-ux-pro-max-skill/cli/package.json
Viet Tran a38d04c3d5
feat(search): overhaul relevance and curated design data
Overhaul BM25 relevance, reasoning and data-quality contracts; refresh UI styles and framework guidance; add resilient text, chip, badge and micro-interaction guidance; strengthen release, provenance and catalog refresh gates; update bilingual documentation.
2026-08-14 00:08:23 +07:00

64 lines
2.2 KiB
JSON
Executable File

{
"name": "ui-ux-pro-max-cli",
"version": "2.5.0",
"description": "CLI to install UI/UX Pro Max skill for AI coding assistants",
"type": "module",
"bin": {
"uipro": "dist/index.js"
},
"files": [
"dist",
"assets"
],
"scripts": {
"build": "node scripts/build.mjs",
"dev": "bun run src/index.ts",
"sync:assets": "node scripts/sync-assets.mjs",
"check:assets": "node scripts/sync-assets.mjs --check",
"validate:csv": "cd .. && python3 scripts/validate-csv.py",
"validate:semantic": "cd .. && python3 src/ui-ux-pro-max/scripts/validate_data.py",
"validate:agent-guide": "cd .. && python3 scripts/validate-agent-guide.py",
"validate:catalog-summary": "cd .. && python3 scripts/generate-catalog-summary.py --check",
"test:python": "cd .. && python3 -m unittest discover -s src/ui-ux-pro-max/scripts/tests -p 'test_*.py'",
"evaluate:relevance": "cd .. && python3 scripts/evaluate-relevance.py",
"evaluate:relevance:calibration": "cd .. && python3 scripts/evaluate-relevance.py --split calibration",
"evaluate:relevance:held-out": "cd .. && python3 scripts/evaluate-relevance.py --split held_out",
"smoke:domains": "cd .. && bash scripts/smoke-domains.sh",
"smoke:stacks": "cd .. && bash scripts/smoke-stacks.sh",
"verify:data": "npm run validate:csv && npm run validate:semantic && npm run validate:agent-guide && npm run validate:catalog-summary && npm run test:python && npm run evaluate:relevance && npm run smoke:domains && npm run smoke:stacks && npm run check:assets",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run sync:assets && npm run verify:data && npm run typecheck && npm run build"
},
"keywords": [
"ui",
"ux",
"design",
"claude",
"cursor",
"windsurf",
"copilot",
"kiro",
"trae",
"roocode",
"codex",
"qoder",
"ai",
"skill"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.1.0",
"ora": "^8.1.1",
"prompts": "^2.4.2"
},
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/bun": "^1.1.14",
"@types/node": "^22.10.1",
"@types/prompts": "^2.4.9",
"typescript": "^5.7.2"
}
}