snow-flow 8.33.13 → 8.33.14
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "snow-flow",
|
|
3
|
-
"version": "8.33.
|
|
3
|
+
"version": "8.33.14",
|
|
4
4
|
"description": "ServiceNow development with SnowCode - 75+ LLM providers (Claude, GPT, Gemini, Llama, Mistral, DeepSeek, Groq, Ollama) • 393 Optimized Tools • 2 MCP Servers • Multi-agent orchestration • Use ANY AI coding assistant (ML tools moved to Enterprise)",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "commonjs",
|
|
@@ -557,5 +557,8 @@
|
|
|
557
557
|
"prettier --write",
|
|
558
558
|
"git add"
|
|
559
559
|
]
|
|
560
|
+
},
|
|
561
|
+
"peerDependencies": {
|
|
562
|
+
"@groeimetai/snow-code": "^1.0.48"
|
|
560
563
|
}
|
|
561
564
|
}
|
|
@@ -24,6 +24,11 @@ async function syncSnowCodeVersion() {
|
|
|
24
24
|
const packageJsonPath = path.join(__dirname, '..', 'package.json');
|
|
25
25
|
const packageJson = JSON.parse(fs.readFileSync(packageJsonPath, 'utf-8'));
|
|
26
26
|
|
|
27
|
+
// Ensure peerDependencies exists
|
|
28
|
+
if (!packageJson.peerDependencies) {
|
|
29
|
+
packageJson.peerDependencies = {};
|
|
30
|
+
}
|
|
31
|
+
|
|
27
32
|
// Get current peer dependency version
|
|
28
33
|
const currentVersion = packageJson.peerDependencies['@groeimetai/snow-code'];
|
|
29
34
|
|