mirror of
https://github.com/PawanOsman/ChatGPT.git
synced 2026-06-01 22:08:54 +02:00
31 lines
697 B
JSON
31 lines
697 B
JSON
{
|
|
"name": "chatgpt",
|
|
"version": "1.0.0",
|
|
"description": "OpenAI API Free Reverse Proxy",
|
|
"type": "module",
|
|
"main": "app.js",
|
|
"scripts": {
|
|
"start": "tsc && node dist/app.js",
|
|
"watch": "tsc-watch --onSuccess \"node dist/app.js\"",
|
|
"build": "tsc"
|
|
},
|
|
"author": "Pawan Osman",
|
|
"license": "AGPL-3.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/PawanOsman/ChatGPT.git"
|
|
},
|
|
"dependencies": {
|
|
"axios": "^1.6.7",
|
|
"body-parser": "^1.20.2",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.18.3",
|
|
"gpt-3-encoder": "^1.1.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|