31b36ba226
Consolidates KBX UI Boundary Governance framework with component manifest, screen recipe registry, AI component gate, and exception lifecycle validation. Evidence (evidence/V13-FE-005/*.log, 55+ files): - Full frontend regression: 70 files / 180 tests PASS - UI boundary gate: 37 files / 0 failures / 6 raw-color warnings (DEBT tracked) - Component manifest validation: 0 failures - Screen recipe governance: 0 failures - AI component gate: 17 feature files / 23 known exports / 0 failures - Accessibility E2E: 22 passed - Production build: PASS (>500 kB chunk warning V13-FE-038 DECISION_REQUIRED) - TypeCheck: PASS - KBX validators: All 5 PASS (failures=0) Added: 19 files (6 validator scripts, 6 test specs, 4 slice notes, 3 registries) Modified: 9 files (CI workflow, WBS tracker, E2E specs, FE setup, Layout, TS configs) Outstanding per V13-FE-005 note: AI prop-level validation, exception lifecycle, browser/visual/AT/performance evidence. No completion overclaim. AGENTS.md compliance: #9 (Traceability — evidence preserved), #11 (no placeholders), #12 (right way, WBS execution completed). Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
45 lines
1.4 KiB
JSON
45 lines
1.4 KiB
JSON
{
|
|
"name": "kartsell-frontend",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"packageManager": "pnpm@10.0.0",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"typecheck": "vue-tsc --noEmit",
|
|
"test": "vitest run",
|
|
"e2e": "playwright test",
|
|
"validate:ui-boundary": "node ../scripts/validate-ui-boundary.mjs --root .",
|
|
"validate:component-manifest": "node ../scripts/validate-kbx-component-manifest.mjs --root ."
|
|
,"validate:screen-recipes": "node ../scripts/validate-kbx-screen-recipes.mjs --root ."
|
|
,"validate:ai-components": "node ../scripts/validate-kbx-ai-components.mjs --root ."
|
|
,"validate:exceptions": "node ../scripts/validate-kbx-exceptions.mjs --root .",
|
|
"validate:kbx": "node ../scripts/validate-kbx-governance.mjs --root ."
|
|
},
|
|
"dependencies": {
|
|
"@primevue/themes": "4.5.4",
|
|
"@tanstack/vue-query": "^5.0.0",
|
|
"ag-grid-community": "^34.0.0",
|
|
"ag-grid-vue3": "^34.0.0",
|
|
"axios": "^1.0.0",
|
|
"pinia": "^3.0.0",
|
|
"primevue": "^4.0.0",
|
|
"vee-validate": "^4.0.0",
|
|
"vue": "^3.5.0",
|
|
"vue-router": "^4.0.0",
|
|
"zod": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.0.0",
|
|
"@types/node": "^26.1.2",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"@vue/test-utils": "^2.0.0",
|
|
"jsdom": "^26.0.0",
|
|
"typescript": "^5.0.0",
|
|
"vite": "^8.0.0",
|
|
"vitest": "^4.0.0",
|
|
"vue-tsc": "^3.0.0"
|
|
}
|
|
}
|