-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.11 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
{
"name": "cognigy-vg",
"author": {
"name": "tgbv",
"url": "https://github.com/tgbv"
},
"repository": {
"type": "git",
"url": "https://github.com/tgbv/cognigy-vg.git"
},
"version": "2.0.0",
"license": "MIT",
"description": "CLI to interact with Cognigy Voice Gateway.",
"keywords": [
"cli",
"cognigy",
"cognigy-vg",
"voice-gateway"
],
"engines": {
"node": ">=18",
"npm": ">=9"
},
"files": [
"build",
"package-lock.json",
"package.json",
"README.md",
"LICENSE"
],
"bin": {
"cognigy-vg": "./build/index.js"
},
"scripts": {
"cognigy-vg-dev": "npx ts-node ./src/index.ts",
"build-local": "npx tsc && npm pack && npm i -g cognigy-vg*"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/google-libphonenumber": "^7.4.30",
"@types/lodash": "^4.17.7",
"@types/prompts": "^2.4.9",
"ts-node": "^10.9.2"
},
"dependencies": {
"axios": "^1.7.7",
"commander": "^12.1.0",
"fs-extra": "^11.2.0",
"google-libphonenumber": "^3.2.38",
"lodash": "^4.17.21",
"prompts": "^2.4.2"
}
}