-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 943 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 943 Bytes
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
{
"name": "fb-chat-api-buttons",
"version": "1.1.2",
"description": "An extension for facebook-chat-api, which provides slightly better UX for your chat bot by adding buttons.",
"keywords": [
"facebook-chat-api",
"bot",
"facebook-bot",
"nodejs",
"typescript",
"npm-package"
],
"author": {
"name": "Mikołaj Palkiewicz",
"email": "xnerhu@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xnerhu/fb-chat-api-buttons.git"
},
"homepage": "https://github.com/xnerhu/fb-chat-api-buttons#readme",
"publishConfig": {
"access": "public"
},
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"prepare": "npm run build"
},
"dependencies": {
"@types/node": "10.12.18",
"typescript": "3.3.1"
},
"devDependencies": {
"@types/express": "4.16.1"
}
}