Files
awesome-copilot/package.json
Aaron Powell f8829be835 feat: Add GitHub Pages website for browsing resources
- Add static website with pages for agents, prompts, instructions, skills, and collections
- Implement client-side fuzzy search across all resources
- Add file viewer modal with copy-to-clipboard and install-to-editor functionality
- Add Tools page for MCP server and future tools
- Add Samples page placeholder for copilot-sdk cookbook migration
- Add metadata JSON generation script (eng/generate-website-data.mjs)
- Add GitHub Actions workflow for automated Pages deployment
- Update package.json with website build scripts
2026-01-28 13:43:41 +11:00

46 lines
1.4 KiB
JSON

{
"name": "awesome-copilot",
"version": "1.0.0",
"description": "Enhance your GitHub Copilot experience with community-contributed instructions, prompts, agents, and skills.",
"main": "./eng/update-readme.js",
"private": true,
"scripts": {
"start": "npm run build",
"build": "node ./eng/update-readme.mjs",
"contributors:add": "all-contributors add",
"contributors:report": "node ./eng/contributor-report.mjs",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"collection:validate": "node ./eng/validate-collections.mjs",
"collection:create": "node ./eng/create-collection.mjs",
"skill:validate": "node ./eng/validate-skills.mjs",
"skill:create": "node ./eng/create-skill.mjs",
"website:build-data": "node ./eng/generate-website-data.mjs",
"website:build": "npm run build && npm run website:build-data",
"website:serve": "npx serve website -l 3000"
},
"repository": {
"type": "git",
"url": "https://github.com/github/awesome-copilot.git"
},
"keywords": [
"github",
"copilot",
"ai",
"prompts",
"instructions",
"skills",
"agents"
],
"author": "GitHub",
"license": "MIT",
"devDependencies": {
"all-contributors-cli": "^6.26.1"
},
"dependencies": {
"js-yaml": "^4.1.1",
"vfile": "^6.0.3",
"vfile-matter": "^5.0.1"
}
}