groove-dev 0.27.45 → 0.27.47

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/cli",
3
- "version": "0.27.45",
3
+ "version": "0.27.47",
4
4
  "description": "GROOVE CLI — manage AI coding agents from your terminal",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@groove-dev/daemon",
3
- "version": "0.27.45",
3
+ "version": "0.27.47",
4
4
  "description": "GROOVE daemon — agent orchestration engine",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",
@@ -128,7 +128,7 @@ export class IntegrationStore {
128
128
 
129
129
  if (entry.npmPackage) {
130
130
  try {
131
- execFileSync('npm', ['install', entry.npmPackage], {
131
+ execFileSync('npm', ['install', '--legacy-peer-deps', entry.npmPackage], {
132
132
  cwd: this.integrationsDir,
133
133
  stdio: 'pipe',
134
134
  timeout: 120_000,
@@ -165,7 +165,7 @@ export class IntegrationStore {
165
165
  const entry = this.registry.find((s) => s.id === integrationId);
166
166
  if (entry?.npmPackage) {
167
167
  try {
168
- execFileSync('npm', ['uninstall', entry.npmPackage], {
168
+ execFileSync('npm', ['uninstall', '--legacy-peer-deps', entry.npmPackage], {
169
169
  cwd: this.integrationsDir,
170
170
  stdio: 'pipe',
171
171
  timeout: 60_000,