@papercraneai/cli 1.7.0 → 1.7.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/lib/dev-server.js CHANGED
@@ -349,7 +349,7 @@ export default nextConfig;
349
349
  const nmDir = path.join(workspaceDir, 'node_modules');
350
350
  if (!fsSync.existsSync(nmDir)) {
351
351
  console.log('Installing dependencies...');
352
- execSync('npm install', { cwd: workspaceDir, stdio: 'inherit' });
352
+ execSync('npm install --prefer-offline', { cwd: workspaceDir, stdio: 'inherit' });
353
353
  }
354
354
  }
355
355
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papercraneai/cli",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "description": "CLI tool for managing OAuth credentials for LLM integrations",
5
5
  "main": "index.js",
6
6
  "type": "module",