stringray-ai 1.0.7 → 1.0.8

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/index.js CHANGED
@@ -78,7 +78,8 @@ program
78
78
  console.log("✅ Created oh-my-opencode.json configuration");
79
79
 
80
80
  // Copy .mcp.json configuration
81
- const mcpConfigSource = path.join(__dirname, '..', '.mcp.json');
81
+ // Use a simpler approach that works in both CommonJS and ES modules
82
+ const mcpConfigSource = path.resolve(__dirname, '..', '.mcp.json');
82
83
  const mcpConfigDest = path.join(process.cwd(), '.mcp.json');
83
84
 
84
85
  if (fs.existsSync(mcpConfigSource)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "stringray-ai",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "⚡ StringRay ⚡: Bulletproof AI orchestration with systematic error prevention. Zero dead ends. Ship clean, tested, optimized code — every time.",
5
5
  "type": "module",
6
6
  "main": "./dist/plugin/index.js",