Files
awesome-copilot/website-astro/package.json
Aaron Powell 6bcb6ffc37 refactor(website): convert to ES modules with TypeScript
- Replace all inline scripts with TypeScript modules
- Create page-specific modules for agents, prompts, instructions, skills, collections, index
- Create core modules: utils.ts, search.ts, modal.ts, choices.ts, jszip.ts, theme.ts
- Remove window global exports, use proper ES module imports
- Add type interfaces for all data structures
- Use data-base-path attribute on body for base URL handling
- Bundle Choices.js and JSZip via npm instead of CDN
- Astro pages now just have single script import each
2026-01-28 16:38:49 +11:00

27 lines
514 B
JSON

{
"name": "awesome-copilot-website",
"version": "1.0.0",
"description": "Awesome GitHub Copilot website",
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro"
},
"keywords": [
"github",
"copilot",
"agents",
"prompts"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"astro": "^5.16.15",
"choices.js": "^11.1.0",
"jszip": "^3.10.1"
}
}