-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 KB
/
package.json
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
46
47
48
49
50
51
52
53
{
"name": "copilot-api",
"version": "0.0.7",
"description": "A wrapper around GitHub Copilot API to make it OpenAI compatible, making it usable for other tools.",
"keywords": [
"proxy",
"github-copilot",
"openai-compatible"
],
"homepage": "https://github.com/ericc-ch/copilot-api",
"bugs": "https://github.com/ericc-ch/copilot-api/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/ericc-ch/copilot-api.git"
},
"author": "Erick Christian <[email protected]>",
"type": "module",
"bin": {
"copilot-api": "./dist/main.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "bun run --hot ./src/main.ts",
"knip": "knip-bun",
"lint": "eslint . --cache",
"prepublishOnly": "bun run build",
"release": "bumpp && bun publish --access public",
"start": "NODE_ENV=production bun run ./src/main.ts"
},
"dependencies": {
"citty": "^0.1.6",
"consola": "^3.4.0",
"fetch-event-stream": "^0.1.5",
"hono": "^4.7.0",
"ofetch": "^1.4.1",
"pathe": "^2.0.2",
"srvx": "^0.1.4"
},
"devDependencies": {
"@echristian/eslint-config": "^0.0.18",
"@types/bun": "latest",
"bumpp": "^10.0.2",
"eslint": "^9.20.0",
"knip": "^5.43.6",
"tsup": "^8.3.6"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}