-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 829 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 829 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
{
"name": "vapi-gitops",
"version": "1.0.0",
"description": "GitOps management for Vapi resources (Assistants, Structured Outputs, Tools)",
"type": "module",
"private": true,
"license": "Apache-2.0",
"scripts": {
"setup": "tsx src/setup.ts",
"apply": "tsx src/apply-cmd.ts",
"push": "tsx src/push-cmd.ts",
"pull": "tsx src/pull-cmd.ts",
"call": "tsx src/call-cmd.ts",
"cleanup": "tsx src/cleanup-cmd.ts",
"eval": "tsx src/eval.ts",
"build": "tsc --noEmit",
"test": "node --import tsx --test tests/*.test.ts"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@inquirer/prompts": "^8.4.1",
"yaml": "^2.7.0"
},
"optionalDependencies": {
"mic": "^2.1.2",
"speaker": "^0.5.5"
}
}