- remove stale docs/admin-frontend-spec.md (old Express/EJS admin), unused templates/ (SmartAdmin copy), dead scripts/sync-agents.cjs, committed dev.pid - add docs/API.md (admin REST API reference) and docs/DATABASE.md (DB schema) - refresh .env.example: drop stale ADMIN_PORT/SHOP_CONTAINER, add ADMIN_URL, HEALTH_PORT, DEFAULT_LANGUAGE, CHATBOT_API_* - add npm run lint so Gitea workflows pass - rebrand web-testing suite from APAW to telegram-shop
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
"name": "telegram-shop-web-testing",
|
|
"version": "2.0.0",
|
|
"description": "Web application testing suite for Telegram Shop - 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": "Telegram Shop Team",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"pixelmatch": "^5.3.0",
|
|
"playwright": "1.52.0",
|
|
"pngjs": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@mizchi/vlmkit": "latest"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
}
|
|
} |