forked from JS-Hub-ZW/heyooh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 947 Bytes
/
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
{
"name": "heyooh",
"version": "1.2.3",
"description": "heyooh is a javascript port of heyoo(made in python). heyoo is a python wrapper for the Whatsapp Cloud API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"prepublish": "tsc",
"scripts": {
"dev": "ts-node-dev --exit-child src/hook.ts",
"start": "ts-node src/hook.ts",
"build": "tsc",
"test": "jest"
},
"keywords": [
"api",
"typescript",
"api-wrapper",
"whatsapp-cloud-api"
],
"author": "JS-Hub-ZW",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.35",
"jest": "^28.1.0",
"supertest": "^6.2.3",
"ts-jest": "^28.0.2",
"ts-node": "^10.8.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.6.4"
},
"dependencies": {
"axios": "^0.27.2",
"body-parser": "^1.20.0",
"dotenv": "^16.0.1",
"express": "^4.18.1"
}
}