@theproductguy/create-mission-control 1.0.10 → 1.0.12
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
|
@@ -106,6 +106,7 @@ async function init() {
|
|
|
106
106
|
|
|
107
107
|
// Copy Agent OS UI Package (for local workspace support)
|
|
108
108
|
fs.cpSync(path.join(templateDir, 'agent-os-ui'), path.join(root, 'agent-os-ui'), copyOptions);
|
|
109
|
+
fs.renameSync(path.join(root, 'agent-os-ui', '_package.json'), path.join(root, 'agent-os-ui', 'package.json'));
|
|
109
110
|
|
|
110
111
|
// 3. Configure Workspace
|
|
111
112
|
console.log(cyan('\n3. Configuring Workspace...'));
|
package/package.json
CHANGED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@theproductguy/agent-os-ui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"main": "./dist/agent-os-ui.umd.cjs",
|
|
6
|
+
"module": "./dist/agent-os-ui.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/agent-os-ui.js",
|
|
15
|
+
"require": "./dist/agent-os-ui.umd.cjs"
|
|
16
|
+
},
|
|
17
|
+
"./style.css": "./dist/style.css"
|
|
18
|
+
},
|
|
19
|
+
"scripts": {
|
|
20
|
+
"dev": "vite",
|
|
21
|
+
"build": "tsc && vite build",
|
|
22
|
+
"lint": "eslint ."
|
|
23
|
+
},
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"react": ">=18.0.0",
|
|
26
|
+
"react-dom": ">=18.0.0"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"clsx": "^2.1.0",
|
|
30
|
+
"lucide-react": "^0.469.0",
|
|
31
|
+
"react-markdown": "^9.0.0",
|
|
32
|
+
"remark-breaks": "^4.0.0",
|
|
33
|
+
"remark-gfm": "^4.0.0",
|
|
34
|
+
"tailwind-merge": "^2.2.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@tailwindcss/typography": "^0.5.19",
|
|
38
|
+
"@types/node": "^20.10.0",
|
|
39
|
+
"@types/react": "^18.2.0",
|
|
40
|
+
"@types/react-dom": "^18.2.0",
|
|
41
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
42
|
+
"autoprefixer": "^10.4.20",
|
|
43
|
+
"postcss": "^8.4.49",
|
|
44
|
+
"react": "^18.3.1",
|
|
45
|
+
"react-dom": "^18.3.1",
|
|
46
|
+
"tailwindcss": "^3.4.17",
|
|
47
|
+
"tailwindcss-animate": "^1.0.7",
|
|
48
|
+
"eslint": "^9.39.1",
|
|
49
|
+
"globals": "^16.5.0",
|
|
50
|
+
"typescript": "^5.3.3",
|
|
51
|
+
"vite": "^5.0.10",
|
|
52
|
+
"vite-plugin-dts": "^3.7.0"
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
],
|
|
13
13
|
"scripts": {
|
|
14
14
|
"dev": "npm run build:ui && npm run start:all",
|
|
15
|
-
"build:ui": "npm run build -w
|
|
15
|
+
"build:ui": "npm run build -w 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": "cross-env PORT=5403 npm start -w backend",
|
|
18
|
-
"start:design": "npm run dev -w design-
|
|
19
|
-
"start:control": "npm run dev -w frontend -- --port 5401",
|
|
17
|
+
"start:api": "cross-env PORT=5403 npm start -w control-center/backend",
|
|
18
|
+
"start:design": "npm run dev -w design-system -- --port 5400",
|
|
19
|
+
"start:control": "npm run dev -w control-center/frontend -- --port 5401",
|
|
20
20
|
"start:app": "npm run dev -w app -- --port 5402",
|
|
21
21
|
"build": "npm run build --workspaces",
|
|
22
22
|
"test": "vitest run",
|