-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.13 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
{
"name": "messenger-botcore",
"version": "3.0.5",
"description": "A collection of tools for writing Facebook Messenger bots.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git://github.com/AstroCB/BotCore.git"
},
"keywords": [
"bot",
"messenger",
"facebook"
],
"author": "Cameron Bernhardt (AstroCB)",
"license": "MIT",
"bugs": {
"url": "https://github.com/AstroCB/BotCore/issues"
},
"homepage": "https://github.com/AstroCB/BotCore#readme",
"files": [
"dist/**/*"
],
"dependencies": {
"argparse": "^1.0.10",
"facebook-chat-api": "github:AstroCB/facebook-chat-api#lookup-by-mid",
"memjs": "^1.2.2"
},
"devDependencies": {
"@types/argparse": "^2.0.5",
"@types/facebook-chat-api": "github:AstroCB/typed-facebook-chat-api#update-send-message",
"@types/memjs": "^1.2.2",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"typedoc": "^0.20.32",
"typescript": "^4.2.3"
}
}