-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 790 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "github-copilot-cli-course",
"version": "1.0.0",
"description": "GitHub Copilot CLI for Beginners - Course Materials",
"scripts": {
"generate:headers": "python3 .github/scripts/generate-chapter-headers.py",
"scan:demos": "node .github/scripts/scan-demos.js",
"create:tapes": "node .github/scripts/create-tapes.js",
"generate:vhs": "node .github/scripts/generate-demos.js",
"verify:gifs": "node .github/scripts/verify-gifs.js",
"generate:demos": "npm run create:tapes && npm run generate:vhs && npm run verify:gifs",
"release": "npm run generate:demos",
"release:ci": "npm run generate:headers"
},
"keywords": [
"github-copilot",
"cli",
"tutorial",
"course"
],
"author": "Microsoft Corporation",
"license": "MIT"
}