mirror of
https://github.com/github/awesome-copilot.git
synced 2026-02-20 18:35:14 +00:00
- Add context-engineering, gem-team, and ospo-sponsorship to marketplace.json - Create eng/generate-marketplace.mjs to automatically generate marketplace.json - Update package.json build script to include marketplace generation - Update GitHub workflow to trigger on plugin changes Co-authored-by: aaronpowell <434140+aaronpowell@users.noreply.github.com>
50 lines
1.7 KiB
JSON
50 lines
1.7 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 && node ./eng/generate-marketplace.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",
|
|
"plugin:migrate": "node ./eng/collection-to-plugin.mjs",
|
|
"plugin:refresh": "PLUGIN_MODE=refresh node ./eng/collection-to-plugin.mjs",
|
|
"plugin:generate-marketplace": "node ./eng/generate-marketplace.mjs",
|
|
"website:data": "node ./eng/generate-website-data.mjs",
|
|
"website:dev": "npm run website:data && npm run --prefix website dev",
|
|
"website:build": "npm run build && npm run website:data && npm run --prefix website build",
|
|
"website:preview": "npm run --prefix website preview"
|
|
},
|
|
"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"
|
|
}
|
|
}
|