mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-21 03:44:21 +00:00

* feat: 添加 OPENAI_API_BASE_URL 可选参数[#249] * fix: 生成的代码块不能复制的问题[#251][#260] * perf: 限制高分屏上的宽度[#257] * perf: 文字按单词换行[#215][#225] * perf: highlight.js 新语法警告 * fix: 移动端输入框不会被键盘弹起[#256] * chore: 更新文档 * chore: version 2.9.2
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "chatgpt-web-service",
|
|
"version": "1.0.0",
|
|
"private": false,
|
|
"description": "ChatGPT Web Service",
|
|
"author": "ChenZhaoYu <chenzhaoyu1994@gmail.com>",
|
|
"keywords": [
|
|
"chatgpt-web",
|
|
"chatgpt",
|
|
"chatbot",
|
|
"express"
|
|
],
|
|
"engines": {
|
|
"node": "^16 || ^18"
|
|
},
|
|
"scripts": {
|
|
"start": "esno ./src/index.ts",
|
|
"dev": "esno watch ./src/index.ts",
|
|
"prod": "esno ./build/index.js",
|
|
"build": "pnpm clean && tsup",
|
|
"clean": "rimraf build",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"common:cleanup": "rimraf node_modules && rimraf pnpm-lock.yaml"
|
|
},
|
|
"dependencies": {
|
|
"chatgpt": "^5.0.6",
|
|
"dotenv": "^16.0.3",
|
|
"esno": "^0.16.3",
|
|
"express": "^4.18.2",
|
|
"isomorphic-fetch": "^3.0.0",
|
|
"node-fetch": "^3.3.0",
|
|
"socks-proxy-agent": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@antfu/eslint-config": "^0.35.3",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^18.14.6",
|
|
"eslint": "^8.35.0",
|
|
"rimraf": "^4.2.0",
|
|
"tsup": "^6.6.3",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|