-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 697 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 697 Bytes
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
{
"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"
}
}