-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 722 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 722 Bytes
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
{
"name": "github-copilot-sdk-demos",
"version": "1.0.0",
"description": "Demos para entender GitHub Copilot SDK",
"main": "index.js",
"scripts": {
"start": "npx tsx 0.basic.ts",
"agents": "npx tsx 1.agents.ts",
"streaming": "npx tsx 2.streaming.ts",
"external-server": "npx tsx 3.server.ts"
},
"keywords": [],
"author": "Gisela Torres",
"license": "ISC",
"type": "module",
"dependencies": {
"@github/copilot-sdk": "^0.2.2",
"chalk": "^5.6.2",
"marked": "^15.0.0",
"marked-terminal": "^7.3.0",
"ora": "^9.1.0"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^25.0.10",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}