forked from mrepol742/facebook-chatgpt-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.11 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
{
"name": "facebook-chatbot-using-openai",
"version": "1.0.5",
"description": "A example of how to use OpenAI creating chatbot at Facebook Messenger Platform.",
"main": "index.js",
"scripts": {
"release": "clear && node index.js",
"debug": "clear && node --inspect index.js",
"prettier": "prettier . --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI.git"
},
"keywords": [
"facebook-chat-api",
"chatbot",
"openai",
"fca"
],
"author": {
"name": "Melvin Jones Repol",
"email": "mrepol742@gmail.com",
"url": "https://mrepol742.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI/issues"
},
"homepage": "https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI#readme",
"dependencies": {
"fca-unofficial": "^1.3.10",
"npmlog": "^7.0.1",
"openai": "^3.2.1"
},
"devDependencies": {
"prettier": "^2.8.4"
}
}