-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 933 Bytes
/
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
{
"name": "gpt-web",
"version": "0.0.16",
"description": "一个基于逆向工程的 ChatGPT 命令行及 API 工具,支持账号登录 ChatGPT Web 版本,无需代理即可使用。",
"main": "dist/index.js",
"engines": {
"node": ">=18"
},
"bin": {
"gpt-web": "./dist/bin/cli.js"
},
"scripts": {
"build": "rimraf -rf ./dist && tsc -p ./",
"test": "tsx ./tests/chat",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/node": "^18.6.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"author": "weaigc",
"license": "Apache-2.0",
"dependencies": {
"dotenv": "^16.3.1",
"commander": "^11.0.0",
"cors": "^2.8.5",
"debug": "^4.3.4",
"express": "^4.18.2",
"undici": "^5.22.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weaigc/gpt-web.git"
},
"keywords": [
"ai",
"chatgpt",
"gpt"
]
}