ktg-plugin-marketplace/plugins/voyage/package.json
Kjell Tore Guttormsen b88c120680 feat(voyage): add Playwright + @axe-core/playwright devDependencies
Step 27 of v4.3 plan — adds Playwright 1.59.1 + axe-core/playwright 4.10.2
as devDependencies, npm script test:e2e, and playwright.config.mjs with
file:// baseURL pointing at playground/. Chromium browser binary installed
to ~/Library/Caches/ms-playwright/.

Trace: SC2 (WCAG verifikasjon krever browser-driver), research/04
Recommendation security; brief Constraint linje 64 (zero new deps i
playground/) er OK fordi Playwright er devDependency på voyage-plugin-rot,
ikke i playground/.
2026-05-10 18:13:29 +02:00

31 lines
777 B
JSON

{
"name": "voyage",
"version": "4.2.0",
"description": "Voyage — brief, research, plan, execute, review, revise, continue. Contract-driven Claude Code pipeline + first marketplace playground.",
"type": "module",
"engines": {
"node": ">=18"
},
"scripts": {
"test": "node --test 'tests/**/*.test.mjs'",
"test:e2e": "playwright test tests/e2e",
"verify": "bash verify.sh"
},
"keywords": [
"claude-code",
"planning",
"research",
"agents",
"plugin"
],
"author": "Kjell Tore Guttormsen",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://git.fromaitochitta.com/open/ktg-plugin-marketplace"
},
"devDependencies": {
"@axe-core/playwright": "^4.9.0",
"@playwright/test": "^1.44.0"
}
}