- Added all agent definitions (.kile/agents/*.md) - Added commands, rules, skills, shared modules - Added src/, scripts/, tests/, docker/, agent-evolution/ - Extracted 3 archives: website/, workspace/, release/ - Created .env with Gitea creds for UniqueSoft/Phantom - Created docs/ with project-specific guides - Added .gitignore for node_modules
32 lines
980 B
JSON
32 lines
980 B
JSON
{
|
|
"name": "apaw-web-testing",
|
|
"version": "2.0.0",
|
|
"description": "Web application testing suite for APAW - Visual regression, link checking, form testing, console error detection",
|
|
"main": "scripts/visual-test-pipeline.js",
|
|
"scripts": {
|
|
"test": "node scripts/visual-test-pipeline.js",
|
|
"test:visual": "node scripts/visual-test-pipeline.js",
|
|
"test:baseline": "node scripts/capture-screenshots.js baseline",
|
|
"test:current": "node scripts/capture-screenshots.js current",
|
|
"test:compare": "node scripts/compare-screenshots.js",
|
|
"test:console": "node scripts/console-error-monitor-standalone.js",
|
|
"test:links": "node scripts/link-checker.js"
|
|
},
|
|
"keywords": [
|
|
"web-testing",
|
|
"visual-regression",
|
|
"e2e",
|
|
"playwright",
|
|
"kilo-code"
|
|
],
|
|
"author": "APAW Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"pixelmatch": "^5.3.0",
|
|
"playwright": "1.52.0",
|
|
"pngjs": "^7.0.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |