aiteam-x 0.9.0 → 0.9.2

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.
Files changed (2) hide show
  1. package/package.json +2 -1
  2. package/scripts/cli.mjs +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiteam-x",
3
- "version": "0.9.0",
3
+ "version": "0.9.2",
4
4
  "description": "Painel pixel art para orquestrar agentes BMAD em tempo real",
5
5
  "keywords": [
6
6
  "bmad",
@@ -23,6 +23,7 @@
23
23
  },
24
24
  "scripts": {
25
25
  "dev": "next dev",
26
+ "aiteam": "next dev",
26
27
  "build": "next build",
27
28
  "start": "next start",
28
29
  "lint": "next lint",
package/scripts/cli.mjs CHANGED
@@ -129,7 +129,7 @@ async function main() {
129
129
  const n = empty ? 2 : 3;
130
130
 
131
131
  console.log(C.bold(`${n}. Instalando dependências...`));
132
- execSync("npm install", { stdio: "inherit", cwd: absTarget });
132
+ execSync("npm install --legacy-peer-deps", { stdio: "inherit", cwd: absTarget });
133
133
  console.log(C.green(" ✓ Dependências instaladas\n"));
134
134
 
135
135
  console.log(C.bold(`${n + 1}. Executando wizard de configuração...`));
@@ -139,7 +139,7 @@ async function main() {
139
139
  console.log(C.bold(`${n + 2}. Iniciando servidor de desenvolvimento...`));
140
140
  console.log(C.dim(" Acesse http://localhost:3000 quando estiver pronto.\n"));
141
141
 
142
- const child = spawn("npm", ["run", "dev"], {
142
+ const child = spawn("npm", ["run", "aiteam"], {
143
143
  stdio: "inherit",
144
144
  cwd: absTarget,
145
145
  shell: true,