-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
100 lines (100 loc) · 2.58 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
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
{
"name": "@great-detail/whatsapp",
"version": "7.0.9",
"type": "module",
"description": "SDK for interfacing with WhatsApp Business Platform in Typescript or Node.js using the Cloud API, hosted by Meta.",
"repository": {
"type": "git",
"url": "git+https://github.com/great-detail/WhatsApp-Nodejs-SDK.git"
},
"homepage": "https://github.com/great-detail/WhatsApp-Nodejs-SDK",
"bugs": {
"url": "https://github.com/great-detail/WhatsApp-Nodejs-SDK/issues"
},
"author": "Great Detail Ltd <[email protected]>",
"contributors": [
"Rashed Talukder",
"Dom Webber <[email protected]>",
"Great Detail Ltd <[email protected]>"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"bin": "./dist/cli.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./cli": {
"import": {
"types": "./dist/cli.d.ts",
"default": "./dist/cli.js"
},
"require": {
"types": "./dist/cli.d.cts",
"default": "./dist/cli.cjs"
}
}
},
"files": [
"dist"
],
"keywords": [
"WhatsApp",
"SDK",
"Business",
"Platform",
"secure",
"messaging",
"NodeJS",
"Cloud API"
],
"scripts": {
"build": "tsup --entry src/index.ts --entry src/cli.ts --format cjs,esm --minify --dts",
"changeset": "changeset",
"fix": "npm-run-all fix:*",
"fix:eslint": "eslint . --fix",
"fix:prettier": "prettier --write .",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:publint": "publint",
"lint:typecheck": "npm run typecheck",
"prerelease": "npm-run-all build",
"release": "changeset publish",
"test": "node --import tsx --test --experimental-test-coverage src/__tests__/**/*.test.ts src/__tests__/*.test.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"commander": "^12.1.0",
"get-stdin": "^9.0.0",
"ky": "^1.7.2",
"ora": "^8.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@great-detail/eslint-config": "^1.1.0",
"@great-detail/prettier-config": "^0.3.01",
"@types/node": "^22.5.4",
"eslint": "^9.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"publint": "^0.2.7",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"tsx": "^4.19.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"provenance": true
}
}