-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.33 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
55
56
57
58
59
60
61
{
"name": "messenger-api.js",
"version": "0.1.8",
"description": "A powerful Node.js module that allow you to interact with the Facebook API.",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"scripts": {
"test": "nodemon --inspect ./test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tungchaphet/messenger-api.js.git"
},
"author": "Tungchaphet",
"bugs": {
"url": "https://github.com/Tungchaphet/messenger-api.js/issues"
},
"homepage": "https://github.com/Tungchaphet/messenger-api.js#readme",
"contributes": {},
"keywords": [
"facebook",
"selfbot",
"messenger",
"api",
"client",
"node",
"fca"
],
"files": [
"src",
"typings",
"README.md",
"test"
],
"directories": {
"lib": "src",
"test": "test"
},
"license": "MIT",
"dependencies": {
"@discordjs/collection": "^1.3.0",
"axios": "^1.2.2",
"bluebird": "^2.11.0",
"events": "^3.3.0",
"fs-extra": "^11.1.0",
"https-proxy-agent": "^4.0.0",
"mqtt": "^4.2.8",
"node-fetch": "^2.6.1",
"npmlog": "^1.2.0",
"request": "^2.53.0",
"websocket-stream": "^5.5.0"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^18.11.18",
"express": "^4.18.2"
},
"engines": {
"node": ">=16.9.0"
}
}