@theproductguy/create-mission-control 1.0.8 → 1.0.10

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/bin/cli.js CHANGED
@@ -121,7 +121,7 @@ async function init() {
121
121
 
122
122
  appPkg.dependencies = {
123
123
  ...appPkg.dependencies,
124
- "@theproductguy/agent-os-ui": "*", // Use workspace version
124
+ "@theproductguy/agent-os-ui": "file:../agent-os-ui", // Force local resolution
125
125
  "lucide-react": "^0.469.0",
126
126
  "clsx": "^2.1.0",
127
127
  "tailwind-merge": "^2.2.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theproductguy/create-mission-control",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "Scaffolding tool for Agent OS applications",
5
5
  "type": "module",
6
6
  "bin": {
@@ -10,7 +10,7 @@
10
10
  "preview": "vite preview"
11
11
  },
12
12
  "dependencies": {
13
- "@theproductguy/agent-os-ui": "*",
13
+ "@theproductguy/agent-os-ui": "file:../../agent-os-ui",
14
14
  "@tailwindcss/typography": "^0.5.19",
15
15
  "axios": "^1.13.2",
16
16
  "clsx": "^2.1.1",
@@ -12,12 +12,12 @@
12
12
  ],
13
13
  "scripts": {
14
14
  "dev": "npm run build:ui && npm run start:all",
15
- "build:ui": "cd agent-os-ui && npm run build",
15
+ "build:ui": "npm run build -w @theproductguy/agent-os-ui",
16
16
  "start:all": "concurrently \"npm run start:api\" \"npm run start:design\" \"npm run start:control\" \"npm run start:app\"",
17
- "start:api": "cd control-center/backend && PORT=5403 npm start",
18
- "start:design": "cd design-system && npm run dev -- --port 5400",
19
- "start:control": "cd control-center/frontend && npm run dev -- --port 5401",
20
- "start:app": "cd app && npm run dev -- --port 5402",
17
+ "start:api": "cross-env PORT=5403 npm start -w backend",
18
+ "start:design": "npm run dev -w design-os -- --port 5400",
19
+ "start:control": "npm run dev -w frontend -- --port 5401",
20
+ "start:app": "npm run dev -w app -- --port 5402",
21
21
  "build": "npm run build --workspaces",
22
22
  "test": "vitest run",
23
23
  "test:watch": "vitest",
@@ -36,6 +36,7 @@
36
36
  "@types/node": "^20.11.0",
37
37
  "@vitest/coverage-v8": "^2.0.0",
38
38
  "concurrently": "^8.2.2",
39
+ "cross-env": "^7.0.3",
39
40
  "eslint": "^9.0.0",
40
41
  "eslint-plugin-react-hooks": "^5.0.0",
41
42
  "eslint-plugin-react-refresh": "^0.4.0",