@vibecheck-ai/cli 7.5.1 → 18.5.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/dist/cli.js +390 -190
- package/dist/cli.js.map +1 -1
- package/dist/guardrail/index.js +4 -3
- package/dist/guardrail/index.js.map +1 -1
- package/dist/v2/index.js +390 -190
- package/dist/v2/index.js.map +1 -1
- package/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibecheck-ai/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "18.5.0",
|
|
4
4
|
"description": "The AI hallucination prevention platform. 27 engines. 5 languages. Self-healing code.",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"type": "module",
|
|
@@ -35,6 +35,8 @@
|
|
|
35
35
|
"bench:cli:smoke": "BENCH_PROFILE=smoke vitest run tests/cli/benchmark.test.ts --reporter=verbose --testTimeout=30000",
|
|
36
36
|
"bench:cli:full": "BENCH_PROFILE=full vitest run tests/cli/benchmark.test.ts --reporter=verbose --testTimeout=300000",
|
|
37
37
|
"smoke-test": "bash ../../scripts/smoke-test-cli.sh",
|
|
38
|
+
"lint": "eslint src/",
|
|
39
|
+
"lint:fix": "eslint src/ --fix",
|
|
38
40
|
"prepublishOnly": "pnpm run build"
|
|
39
41
|
},
|
|
40
42
|
"dependencies": {
|
|
@@ -70,7 +72,7 @@
|
|
|
70
72
|
"update-notifier": "^7.0.0",
|
|
71
73
|
"uuid": "^9.0.0",
|
|
72
74
|
"xxhash-wasm": "^1.0.2",
|
|
73
|
-
"zod": "^3.
|
|
75
|
+
"zod": "^3.25.0",
|
|
74
76
|
"@repo/context-engine": "workspace:*",
|
|
75
77
|
"@repo/vibe-flow": "workspace:*",
|
|
76
78
|
"@vibecheck/engines": "workspace:*",
|
|
@@ -82,9 +84,10 @@
|
|
|
82
84
|
"playwright": "^1.40.0"
|
|
83
85
|
},
|
|
84
86
|
"devDependencies": {
|
|
87
|
+
"@repo/eslint-config": "workspace:*",
|
|
85
88
|
"@types/figlet": "^1.5.0",
|
|
86
89
|
"@types/gradient-string": "^1.1.0",
|
|
87
|
-
"@types/node": "^20.
|
|
90
|
+
"@types/node": "^20.17.0",
|
|
88
91
|
"@types/react": "^18.2.0",
|
|
89
92
|
"@types/update-notifier": "^6.0.0",
|
|
90
93
|
"@isl-lang/codegen": "workspace:*",
|
|
@@ -106,7 +109,8 @@
|
|
|
106
109
|
"strip-ansi": "^7.1.0",
|
|
107
110
|
"tsup": "^8.0.0",
|
|
108
111
|
"tsx": "^4.7.0",
|
|
109
|
-
"typescript": "^5.
|
|
112
|
+
"typescript": "^5.8.0",
|
|
113
|
+
"eslint": "^9.28.0",
|
|
110
114
|
"vitest": "^2.1.8"
|
|
111
115
|
},
|
|
112
116
|
"keywords": [
|