mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 18:35:14 +00:00
Add a new cookbook recipe that generates WCAG accessibility reports using the Playwright MCP server. Includes streaming output, structured report formatting, and optional Playwright test generation. - C#, TypeScript, Python, and Go implementations - Markdown documentation for each language - Updated cookbook.yml, copilot-sdk README, and package.json
23 lines
674 B
JSON
23 lines
674 B
JSON
{
|
|
"name": "copilot-sdk-cookbook-recipes",
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"description": "Runnable examples for GitHub Copilot SDK cookbook recipes",
|
|
"scripts": {
|
|
"error-handling": "tsx error-handling.ts",
|
|
"multiple-sessions": "tsx multiple-sessions.ts",
|
|
"managing-local-files": "tsx managing-local-files.ts",
|
|
"pr-visualization": "tsx pr-visualization.ts",
|
|
"persisting-sessions": "tsx persisting-sessions.ts",
|
|
"accessibility-report": "tsx accessibility-report.ts"
|
|
},
|
|
"dependencies": {
|
|
"@github/copilot-sdk": "*"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.19.7",
|
|
"tsx": "^4.19.2",
|
|
"typescript": "^5.7.2"
|
|
}
|
|
}
|