forked from muharamdani/poe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 817 Bytes
/
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
{
"name": "poe-node",
"version": "1.5.0",
"description": "Work as CLI or module to call the Quora Poe API through GraphQL",
"main": "index.js",
"type": "module",
"scripts": {
"compile": "tsc",
"dev": "npm run compile && node ./dist/cli.js",
"cli": "node ./dist/cli.js"
},
"keywords": [
"poe",
"quora",
"graphql",
"api",
"cli",
"library",
"chatbot",
"bot",
"openai",
"gpt3",
"gpt-3",
"gpt4",
"chatgpt"
],
"author": "Ramdani",
"license": "ISC",
"dependencies": {
"cross-fetch": "^3.1.5",
"diff": "^5.1.0",
"dotenv": "^16.0.3",
"ora": "^6.1.2",
"prompts": "^2.4.2",
"random-useragent": "^0.5.0",
"ws": "^8.12.1"
},
"devDependencies": {
"@types/node": "^18.14.2",
"typescript": "^4.9.5"
}
}