-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 701 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 701 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
{
"name": "copilot-extension-template",
"scripts": {
"dev": "node --watch --experimental-strip-types src/index.ts",
"start": "node --experimental-strip-types src/index.ts"
},
"dependencies": {
"@copilot-extensions/preview-sdk": "^5.0.1",
"@hono/node-server": "^1.13.8",
"@octokit/core": "^6.1.4",
"hono": "^4.7.2"
},
"devDependencies": {
"@types/node": "^22.13.8"
},
"engines": {
"node": ">=22.13.1"
},
"version": "1.0.0",
"type": "module",
"description": "A starter template for building GitHub Copilot extensions using the Preview SDK and Hono framework",
"main": "index.js",
"author": "Nick Taylor <nick@nickyt.co>",
"license": "MIT"
}