-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
48 lines (48 loc) · 1.03 KB
/
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
42
43
44
45
46
47
48
{
"name": "talkgpt",
"version": "0.1.1",
"description": "Allows you to easily talk with OpenAI's ChatGPT",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node dist/index",
"pup": "node dist/puppeteer",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShadovvBeast/TalkGPT.git"
},
"keywords": [
"TalkGPT",
"chatgpt",
"voice",
"talk",
"with",
"open",
"source",
"voice",
"gpt"
],
"author": "Asaf Levy",
"license": "MIT",
"bugs": {
"url": "https://github.com/ShadovvBeast/TalkGPT/issues"
},
"homepage": "https://github.com/ShadovvBeast/TalkGPT#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.14",
"@types/node": "^18.11.12",
"axios": "^1.3.5",
"typescript": "^4.9.4"
},
"dependencies": {
"@sparticuz/chromium": "109",
"@tsconfig/node18": "^1.0.1",
"chatgpt": "^5.0.8",
"cors": "^2.8.5",
"express": "^4.18.2",
"openai": "^3.2.1"
}
}