-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
49
50
51
52
53
54
{
"name": "pptr-gpt",
"version": "1.0.33",
"description": "This Node.js module allows you to interact with the ChatGPT website(https://chat.openai.com) using Puppeteer",
"main": "index.js",
"bin": {
"pptr-gpt": "./index.js"
},
"preferGlobal": true,
"scripts": {
"build": "tsc",
"deploy": "git add . && git commit -m \"update\" && git push && npm version patch && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"puppeteer",
"chatgpt",
"openai",
"gpt",
"ai"
],
"author": "https://github.com/dmytro-rudenko",
"repository": {
"type": "git",
"url": "git://github.com/dmytro-rudenko/pptr-gpt.git"
},
"homepage": "https://github.com/dmytro-rudenko/pptr-gpt#readme",
"license": "MIT",
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"command-line-args": "^5.2.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"html-to-text": "^9.0.5",
"morgan": "^1.10.0",
"puppeteer": "^24.0.0",
"puppeteer-core": "^22.6.2",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/command-line-args": "^5.2.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/html-to-text": "^9.0.4",
"@types/morgan": "^1.9.9",
"@types/puppeteer": "^7.0.4",
"@types/uuid": "^9.0.8",
"typescript": "^5.4.4"
}
}