forked from shyamsridhar123/ClaudeCode-Copilot-Proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "github-copilot-proxy",
"version": "0.1.0",
"description": "Proxy server that lets Cursor IDE use GitHub Copilot APIs",
"main": "dist/index.js",
"scripts": {
"build": "tsc && npm run copy-assets",
"copy-assets": "node -e \"require('fs').cpSync('src/public', 'dist/public', {recursive: true})\"",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"postinstall": "node -e \"try { require('fs').statSync('.git') && require('child_process').execSync('husky', {stdio: 'inherit'}) } catch (e) {}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/shyamsridhar123/ClaudeCode-Copilot-Proxy.git"
},
"keywords": [
"github",
"copilot",
"cursor",
"ide",
"ai",
"proxy",
"openai",
"api"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/shyamsridhar123/ClaudeCode-Copilot-Proxy/issues"
},
"homepage": "https://github.com/shyamsridhar123/ClaudeCode-Copilot-Proxy#readme",
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@octokit/auth-oauth-device": "^6.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.6",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"husky": "^9.0.6",
"jest": "^29.7.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
}
}