-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.24 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.24 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
{
"name": "@github/copilot-engine-sdk",
"version": "0.1.0",
"description": "SDK for building engines on the GitHub Copilot agent platform",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mcp-server": {
"import": "./dist/mcp-server.bundled.js",
"types": "./dist/mcp-server.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "npm run typecheck && npm run bundle:mcp-server",
"typecheck": "tsc",
"bundle:mcp-server": "esbuild src/mcp-server.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/mcp-server.bundled.js --banner:js=\"import { createRequire } from 'module';const require = createRequire(import.meta.url);\"",
"prepare": "npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.0.0",
"esbuild": "^0.25.10",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/github/copilot-engine-sdk.git"
},
"license": "MIT"
}