-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.03 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.03 KB
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
{
"name": "@opperai/cli",
"version": "0.1.22",
"description": "The official Opper CLI — authenticate, route agent inference, and manage the Opper platform",
"type": "module",
"bin": {
"opper": "dist/index.js"
},
"files": [
"dist",
"data",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=20.12"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"lint": "tsc --noEmit"
},
"dependencies": {
"@clack/prompts": "^1.0.0",
"@opperai/agents": "^0.8.0",
"@opperai/login": "^0.4.0",
"commander": "^12.1.0",
"kleur": "^4.1.5",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^20.11.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vitest": "^2.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/opper-ai/cli.git"
},
"license": "MIT",
"keywords": [
"opper",
"cli",
"ai",
"llm"
]
}