-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.3 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.3 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
{
"name": "github-copilot-ai",
"version": "1.0.0",
"description": "Using GitHub Copilot AI just like OpenAI package.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "pkgroll",
"prepublish": "pnpm run build",
"chat": "tsx demo/index.ts chat",
"models": "tsx demo/index.ts models",
"oauth": "tsx demo/index.ts oauth"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"tsconfig.json"
],
"keywords": [
"openai",
"copilot",
"playground",
"typescript"
],
"author": "dragon-fish <dragon-fish@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dragon-fish/github-copilot-ai.git"
},
"homepage": "https://github.com/dragon-fish/github-copilot-ai#readme",
"packageManager": "pnpm@10.8.1",
"devDependencies": {
"@octokit/auth-oauth-device": "^8.0.1",
"@types/node": "^24.0.1",
"clipboardy": "^4.0.0",
"consola": "^3.4.2",
"dotenv": "^16.5.0",
"open": "^10.1.2",
"pkgroll": "^2.12.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"dependencies": {
"openai": "^5.3.0"
}
}