This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
47 lines (47 loc) · 1.41 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
{
"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": {
"setup": "npm install && apt install traceroute cowsay figlet neofetch",
"start": "clear && while [ true ]; do node --trace-deprecation index.js ; done",
"dev": "nodemon --trace-deprecation index.js",
"jshint": "jshint",
"prettier": "prettier ./ --write"
},
"repository": {
"type": "git",
"url": "https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI.git"
},
"keywords": [
"facebook-chat-api",
"chatbot",
"openai",
"fca"
],
"author": {
"name": "Melvin Jones Repol",
"email": "[email protected]",
"url": "https://mrepol742.github.io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/mrepol742/Facebook-ChatBot-using-OpenAI#readme",
"dependencies": {
"fca-unofficial": "^1.3.10",
"npmlog": "^7.0.1",
"openai": "^4.24.0"
},
"devDependencies": {
"jshint": "^2.13.6",
"nodemon": "^3.0.2",
"prettier": "^2.8.4"
},
"engines": {
"node": ">=18.x"
}
}