awesome-copilot/package.json
spectatora 8440d151d3
Convert build scripts from CommonJS to ES Modules (#416)
* Convert build scripts from CommonJS to ES Modules

- Convert all eng/*.js files to ES Modules (.mjs)
- Update package.json scripts to reference .mjs files
- Fix ERR_REQUIRE_ESM error with vfile v6.0.3
- Add __dirname polyfills for ES Modules

* completing the migration of all files to es modules

---------

Co-authored-by: Lyubomir Filipov <lyubomir.filipov@jakala.com>
Co-authored-by: Aaron Powell <me@aaron-powell.com>
2025-11-18 11:23:51 +11:00

38 lines
1017 B
JSON

{
"name": "awesome-copilot",
"version": "1.0.0",
"description": "Enhance your GitHub Copilot experience with community-contributed instructions, prompts, and chat modes",
"main": "./eng/update-readme.js",
"private": true,
"scripts": {
"start": "npm run build",
"build": "node ./eng/update-readme.mjs",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"contributors:check": "all-contributors check",
"collection:validate": "node ./eng/validate-collections.mjs",
"collection:create": "node ./eng/create-collection.mjs"
},
"repository": {
"type": "git",
"url": "https://github.com/github/awesome-copilot.git"
},
"keywords": [
"github",
"copilot",
"ai",
"prompts",
"instructions"
],
"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"
}
}