-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.39 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.39 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "meta-cloud-api",
"version": "2.4.0",
"description": "WhatsApp TypeScript SDK",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"prepublishOnly": "pnpm build",
"prepare": "husky",
"cz": "cz",
"dev": "tsdown --watch",
"build": "tsdown --clean",
"format": "biome check --write .",
"lint": "biome check .",
"clean": "rm -rf dist node_modules",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest --watch",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"release": "pnpm build && changeset publish"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./types": {
"types": "./dist/types/index.d.ts",
"import": "./dist/types/index.js"
},
"./enums": {
"types": "./dist/types/enums.d.ts",
"import": "./dist/types/enums.js"
},
"./utils": {
"types": "./dist/utils/index.d.ts",
"import": "./dist/utils/index.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"types": "./dist/types/index.d.ts",
"types/*": "./dist/types/*",
"enums": "./dist/types/enums.d.ts",
"utils": "./dist/utils/index.d.ts"
}
},
"keywords": [
"whatsapp",
"whatsapp-sdk",
"whatsapp-api",
"whatsapp-bot",
"whatsapp-business",
"whatsapp-cloud-api",
"whatsapp-typescript",
"whatsapp-node",
"whatsapp-messaging",
"whatsapp-integration",
"whatsapp-templates",
"cloud-api",
"typescript-sdk",
"typescript",
"nodejs",
"messaging-api",
"business-messaging",
"chatbot",
"meta",
"waba"
],
"author": "froggy1014",
"license": "MIT",
"packageManager": "pnpm@10.11.0",
"homepage": "https://meta-cloud-api.site",
"repository": {
"type": "git",
"url": "git+https://github.com/froggy1014/meta-cloud-api.git"
},
"bugs": {
"url": "https://github.com/froggy1014/meta-cloud-api/issues"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=18",
"pnpm": ">=10.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.14",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/cz-commitlint": "^19.6.1",
"@commitlint/types": "^19.5.0",
"@types/express": "^5.0.3",
"@types/node": "^22.15.29",
"commitizen": "^4.3.1",
"dotenv": "^16.4.7",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"next": "^15.3.5",
"tsdown": "^0.15.0",
"typescript": "^5.7.3",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": "biome check --write --"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"module": "./dist/index.js"
}