-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
51 lines (51 loc) · 1.46 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
{
"name": "@green-api/whatsapp-api-client",
"version": "0.4.0-0",
"description": "Library to integrate with WhatsApp API. For details have look at https://green-api.com",
"license": "MIT",
"main": "lib/bundle.js",
"bugs": "https://github.com/green-api/whatsapp-api-client/issues",
"homepage": "https://github.com/green-api/whatsapp-api-client",
"types": "./src/index.d.ts",
"scripts": {
"buildBrowser": "rollup --config rollup.config.browser.js --environment BUILD:production",
"buildNode": "rollup --config rollup.config.node.js --environment BUILD:production",
"build": "npm run buildBrowser && npm run buildNode",
"server": "node ./src/WebhookAPI.js"
},
"engines": {
"node": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/green-api/whatsapp-api-client.git"
},
"author": "Green API team",
"files": [
"lib",
"bundle.js",
"whatsapp-api-client.min.js"
],
"keywords": [
"whatsapp",
"whatsapp-api",
"whatsapp-library",
"whatsapp-send-message",
"whatsapp-sender",
"whatsapp-message-sender"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"dotenv": "16.4.5",
"rollup-plugin-progress": "^1.1.2"
},
"dependencies": {
"axios": "^1.6.7",
"fs": "0.0.1-security",
"mime": "^3.0.0",
"rollup": "^2.79.1"
}
}