-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.63 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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",
"plugin:validate": "node ./eng/validate-plugins.mjs",
"plugin:create": "node ./eng/create-plugin.mjs",
"skill:validate": "node ./eng/validate-skills.mjs",
"skill:create": "node ./eng/create-skill.mjs",
"plugin:clean": "node ./eng/clean-materialized-plugins.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"
}
}