-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.82 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
76
77
78
79
{
"name": "@kapso/whatsapp-cloud-api",
"version": "0.2.2",
"description": "TypeScript client for WhatsApp Business Cloud API with typed responses and Zod-validated builders.",
"main": "./dist/index.cjs",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"prepare": "npm run build",
"docs": "typedoc",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\""
},
"author": "Kapso",
"license": "MIT",
"dependencies": {
"zod": "^4.1.11"
},
"devDependencies": {
"@types/node": "^24.6.2",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"dotenv": "^16.4.5",
"esbuild": "^0.25.10",
"eslint": "^8.57.1",
"fdir": "^6.5.0",
"msw": "^2.11.3",
"tsdown": "^0.15.6",
"typedoc": "^0.28.13",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^3.2.4"
},
"type": "module",
"sideEffects": false,
"module": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./server": {
"types": "./dist/server.d.ts",
"import": "./dist/server.js",
"require": "./dist/server.cjs"
}
},
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/gokapso/whatsapp-cloud-api-js.git"
},
"homepage": "https://docs.kapso.ai",
"bugs": {
"url": "https://github.com/gokapso/whatsapp-cloud-api-js/issues"
},
"engines": {
"node": ">=20.19"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"keywords": [
"whatsapp",
"whatsapp-api",
"cloud-api",
"meta",
"typescript",
"sdk",
"kapso",
"whatsapp-business-api",
"whatsapp-cloud-api"
]
}