@gethookmyapp/cli 0.1.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +36 -0
- package/bin/hookmyapp.js +2 -0
- package/dist/cli.js +18881 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gethookmyapp/cli",
|
|
3
|
+
"version": "0.1.0-rc.0",
|
|
4
|
+
"description": "HookMyApp CLI - connect WhatsApp Business API in minutes",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"hookmyapp": "./bin/hookmyapp.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"build": "node build.mjs",
|
|
11
|
+
"dev": "tsx src/index.ts",
|
|
12
|
+
"test": "pnpm test:unit",
|
|
13
|
+
"test:unit": "vitest run --reporter=verbose",
|
|
14
|
+
"test:integration": "vitest run --config vitest.integration.config.ts --reporter=verbose",
|
|
15
|
+
"test:integration:nightly": "vitest run --config vitest.nightly.config.ts --reporter=verbose",
|
|
16
|
+
"prepublishOnly": "node build.mjs"
|
|
17
|
+
},
|
|
18
|
+
"dependencies": {
|
|
19
|
+
"@inquirer/prompts": "^7.0.0",
|
|
20
|
+
"commander": "^14.0.0",
|
|
21
|
+
"open": "^11.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/node": "^22.0.0",
|
|
25
|
+
"esbuild": "^0.25.0",
|
|
26
|
+
"execa": "^9.6.1",
|
|
27
|
+
"playwright": "^1.59.1",
|
|
28
|
+
"tsx": "^4.0.0",
|
|
29
|
+
"typescript": "^5.0.0",
|
|
30
|
+
"vitest": "^3.0.0"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=18"
|
|
34
|
+
},
|
|
35
|
+
"files": [
|
|
36
|
+
"bin/",
|
|
37
|
+
"dist/",
|
|
38
|
+
"README.md"
|
|
39
|
+
],
|
|
40
|
+
"license": "MIT",
|
|
41
|
+
"repository": {
|
|
42
|
+
"type": "git",
|
|
43
|
+
"url": "git+https://github.com/hookmyapp/hookmyapp.git",
|
|
44
|
+
"directory": "cli"
|
|
45
|
+
},
|
|
46
|
+
"homepage": "https://hookmyapp.com",
|
|
47
|
+
"bugs": {
|
|
48
|
+
"url": "https://github.com/hookmyapp/hookmyapp/issues"
|
|
49
|
+
},
|
|
50
|
+
"keywords": [
|
|
51
|
+
"whatsapp",
|
|
52
|
+
"whatsapp-business-api",
|
|
53
|
+
"webhook",
|
|
54
|
+
"cli",
|
|
55
|
+
"hookmyapp"
|
|
56
|
+
],
|
|
57
|
+
"publishConfig": {
|
|
58
|
+
"access": "public",
|
|
59
|
+
"provenance": true
|
|
60
|
+
}
|
|
61
|
+
}
|