-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1005 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 1005 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
30
31
32
33
34
35
36
37
38
39
40
{
"name": "github-copilot-openai-compatible-api",
"version": "1.0.0",
"description": "OpenAI-compatible API server for GitHub Copilot",
"main": "dist/index.js",
"type": "module",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "tsx src/test-client.ts"
},
"keywords": [
"openai",
"github-copilot",
"api",
"llm"
],
"author": "Mark Hingston",
"license": "MIT",
"dependencies": {
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"ai": "^6.0.0",
"ai-sdk-provider-github": "file:../ai-sdk-provider-github",
"cors": "^2.8.5",
"express": "^4.18.2",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@types/node-fetch": "^2.6.11",
"node-fetch": "^3.3.2",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
}
}