@evalguardai/cli 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/evalguard.js +1 -1
- package/dist/index.cjs +128742 -0
- package/dist/index.js +115005 -275
- package/package.json +6 -12
package/package.json
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evalguardai/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "EvalGuard CLI - Run LLM evaluations and security scans from the command line",
|
|
5
|
-
"type": "
|
|
6
|
-
"main": "./
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
7
|
"bin": {
|
|
8
8
|
"evalguard": "./bin/evalguard.js"
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
12
|
"bin",
|
|
13
|
-
"README.md"
|
|
14
|
-
"LICENSE"
|
|
13
|
+
"README.md"
|
|
15
14
|
],
|
|
16
15
|
"scripts": {
|
|
17
16
|
"build": "echo build ready",
|
|
@@ -20,7 +19,7 @@
|
|
|
20
19
|
"lint": "eslint src/ || true",
|
|
21
20
|
"test": "vitest run",
|
|
22
21
|
"clean": "rm -rf dist .turbo",
|
|
23
|
-
"prepublishOnly": "echo
|
|
22
|
+
"prepublishOnly": "echo ready"
|
|
24
23
|
},
|
|
25
24
|
"keywords": [
|
|
26
25
|
"cli",
|
|
@@ -55,12 +54,7 @@
|
|
|
55
54
|
"access": "public",
|
|
56
55
|
"registry": "https://registry.npmjs.org/"
|
|
57
56
|
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"commander": "^13.1.0",
|
|
60
|
-
"chalk": "^5.4.0",
|
|
61
|
-
"ora": "^8.2.0",
|
|
62
|
-
"yaml": "^2.8.3"
|
|
63
|
-
},
|
|
57
|
+
"dependencies": {},
|
|
64
58
|
"devDependencies": {
|
|
65
59
|
"@evalguard/config": "workspace:*",
|
|
66
60
|
"tsx": "^4.19.0",
|