-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.69 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wapi-cloud",
"version": "1.0.0",
"description": "A promise-based, fully-typed Node.js wrapper for integrating the WhatsApp Cloud API (Meta Graph API) into your applications.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"dev": "tsup src/index.ts --format esm,cjs --dts --watch",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run build"
},
"keywords": [
"whatsapp",
"whatsapp-cloud-api",
"meta",
"graph-api",
"sdk",
"chatbot",
"wapi-cloud",
"cloud",
"api",
"whatsapp-cloud",
"cloud-api",
"whatsapp-business",
"whatsapp-business-api",
"bot",
"whatsapp-bot",
"bot-framework",
"nodejs",
"bot-api",
"whatsapp-api",
"business-api",
"wa-api",
"whatsapp-sdk",
"meta-api",
"node-whatsapp",
"chat-api",
"messaging",
"webhooks",
"api-wrapper"
],
"license": "MIT",
"author": "Niyassby <https://github.com/niyassby>",
"repository": {
"type": "git",
"url": "git+https://github.com/niyassby/wapi-cloud.git"
},
"homepage": "https://github.com/niyassby/wapi-cloud#readme",
"bugs": {
"url": "https://github.com/niyassby/wapi-cloud/issues"
},
"devDependencies": {
"typescript": "^5.5.4",
"tsup": "^8.2.4",
"@types/node": "^20.14.0"
},
"engines": {
"node": ">=18"
}
}