ChatGPT-API / package.json
Amrpyt's picture
Upload 10 files
2ba1dc3 verified
{
"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"
}
}