-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1017 Bytes
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
{
"name": "ghl-api-cli",
"version": "0.1.0",
"description": "Complete HighLevel CLI with secure PIT auth, endpoint catalog, raw REST access, and Voice AI helpers.",
"type": "module",
"bin": {
"ghl": "dist/index.js"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/index.ts",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepare": "npm run build"
},
"dependencies": {
"commander": "^14.0.2",
"undici": "^7.16.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/node": "^24.10.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/brahimhamichan/ghl-cli.git"
},
"bugs": {
"url": "https://github.com/brahimhamichan/ghl-cli/issues"
},
"homepage": "https://github.com/brahimhamichan/ghl-cli#readme"
}