llm-cli-gateway 1.17.7 → 1.17.9
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/CHANGELOG.md +118 -0
- package/dist/index.js +15 -14
- package/npm-shrinkwrap.json +1514 -0
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "llm-cli-gateway",
|
|
3
|
-
"version": "1.17.
|
|
3
|
+
"version": "1.17.9",
|
|
4
4
|
"mcpName": "io.github.verivus-oss/llm-cli-gateway",
|
|
5
5
|
"description": "MCP server providing unified access to Claude Code, Codex, Gemini, Grok, and Mistral Vibe CLIs with session management, retry logic, async job orchestration, durable job results, and cross-LLM validation.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"dist/**/*.js",
|
|
47
47
|
"dist/**/*.d.ts",
|
|
48
48
|
"!dist/__tests__/**",
|
|
49
|
+
"npm-shrinkwrap.json",
|
|
49
50
|
"setup/status.schema.json",
|
|
50
51
|
"README.md",
|
|
51
52
|
"CHANGELOG.md",
|
|
@@ -79,7 +80,7 @@
|
|
|
79
80
|
"format": "prettier --write 'src/**/*.ts'",
|
|
80
81
|
"format:check": "prettier --check 'src/**/*.ts'",
|
|
81
82
|
"security:audit": "bash scripts/release-security-audit.sh",
|
|
82
|
-
"check": "npm run build && npm run lint && npm test && npm run security:audit",
|
|
83
|
+
"check": "npm run build && npm run lint && npm run format:check && npm test && npm run security:audit",
|
|
83
84
|
"release:build": "bash installer/build-release.sh",
|
|
84
85
|
"release:checksums": "cd installer/dist && sha256sum --check SHA256SUMS",
|
|
85
86
|
"release:docker": "docker compose -f docker/personal.compose.yml build"
|