psycgod-sage 2.6.0 → 2.6.1
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/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/python/bridge.d.ts +1 -1
- package/dist/python/bridge.js +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ensurePythonSage, findPython, runPythonSage, setupPythonSage, showPythonSageApiStatus } from './python/bridge.js';
|
|
2
|
-
export declare const VERSION = "2.6.
|
|
2
|
+
export declare const VERSION = "2.6.1";
|
|
3
3
|
export declare const PYPI_PACKAGE = "psycgod-sage";
|
|
4
4
|
export declare const NPM_RUN_PREFIX = "npx -y psycgod-sage run --";
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { ensurePythonSage, findPython, runPythonSage, setupPythonSage, showPythonSageApiStatus } from './python/bridge.js';
|
|
2
|
-
export const VERSION = '2.6.
|
|
2
|
+
export const VERSION = '2.6.1';
|
|
3
3
|
export const PYPI_PACKAGE = 'psycgod-sage';
|
|
4
4
|
export const NPM_RUN_PREFIX = 'npx -y psycgod-sage run --';
|
|
5
5
|
//# sourceMappingURL=index.js.map
|
package/dist/python/bridge.d.ts
CHANGED
package/dist/python/bridge.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { spawnSync } from 'child_process';
|
|
2
2
|
import { existsSync, statSync } from 'fs';
|
|
3
|
-
export const EXPECTED_SAGE_VERSION = '2.6.
|
|
3
|
+
export const EXPECTED_SAGE_VERSION = '2.6.1';
|
|
4
4
|
const PYTHON_CANDIDATES = [
|
|
5
5
|
...(process.env.PYTHON ? [{ command: process.env.PYTHON, prefixArgs: [] }] : []),
|
|
6
6
|
{ command: 'python', prefixArgs: [] },
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "psycgod-sage",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
|
+
"mcpName": "io.github.PsYcGoD/sage",
|
|
4
5
|
"mcpName": "io.github.PsYcGoD/sage",
|
|
5
6
|
"description": "npm/npx launcher for the canonical PyPI SAGE CLI wrapper for AI coding agents",
|
|
6
7
|
"author": "PsYcGoD",
|