-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
61 lines (61 loc) · 1.73 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": "ts-messenger-api",
"version": "1.0.2",
"description": "The unofficial API for FB Messenger communication",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "tsc && npx mocha -r ts-node/register",
"prepublish": "npm run build",
"build": "tsc",
"generateDocs": "npx typedoc --out docs ./lib/api.ts ./lib/types/incomingMessages.ts ./lib/types/threads.ts ./lib/types/users.ts ./lib/types.ts --excludePrivate --excludeInternal --name \"Facebook Messenger API\" --includeVersion --hideGenerator"
},
"repository": {
"type": "git",
"url": "git+https://github.com/makiprogrammer/ts-messenger-api.git"
},
"keywords": [
"facebook",
"messenger",
"api",
"messaging"
],
"author": "Filip Makara",
"license": "MIT",
"bugs": {
"url": "https://github.com/makiprogrammer/ts-messenger-api/issues"
},
"homepage": "https://github.com/makiprogrammer/ts-messenger-api#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.5",
"events": "^3.2.0",
"form-data": "^4.0.0",
"got": "^11.8.1",
"mqtt": "^4.2.6",
"node-emoji": "^1.10.0",
"npmlog": "^4.1.2",
"tough-cookie": "^4.0.0",
"tweetnacl-sealedbox-js": "^1.2.0",
"tweetnacl-util": "^0.15.1",
"websocket-stream": "^5.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/events": "^3.0.0",
"@types/mocha": "^8.2.0",
"@types/node-emoji": "^1.8.1",
"@types/npmlog": "^4.1.2",
"@types/tough-cookie": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"chai": "^4.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"txtgen": "^2.2.8",
"typedoc": "^0.20.32",
"typedoc-neo-theme": "^1.1.0",
"typescript": "^4.1.3"
}
}