-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 908 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 908 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
{
"name": "@bonnard/agentops",
"version": "0.8.4",
"type": "module",
"bin": {
"agentops": "./dist/bin/agentops.mjs"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/bonnard-data/agentops-cli"
},
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "tsx src/bin/agentops.ts",
"build": "tsdown src/bin/agentops.ts --format esm --out-dir dist/bin",
"typecheck": "tsc --noEmit",
"lint": "eslint ."
},
"dependencies": {
"commander": "14.0.3",
"open": "11.0.0",
"picocolors": "1.1.1",
"tar": "7.5.13",
"yaml": "^2.8.3"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/node": "22.19.17",
"@types/tar": "^7.0.87",
"eslint": "10.2.0",
"tsdown": "0.21.7",
"tsx": "4.21.0",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0",
"vitest": "^4.1.4"
}
}