@theproductguy/create-mission-control 1.0.12 → 1.0.14
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
|
@@ -105,8 +105,10 @@ async function init() {
|
|
|
105
105
|
fs.cpSync(path.join(templateDir, 'agent-os'), path.join(root, 'agent-os'), copyOptions);
|
|
106
106
|
|
|
107
107
|
// Copy Agent OS UI Package (for local workspace support)
|
|
108
|
-
|
|
109
|
-
|
|
108
|
+
const uiSrc = path.join(templateDir, 'agent-os-ui');
|
|
109
|
+
// console.log('[DEBUG] Agent OS UI Src Files:', fs.readdirSync(uiSrc)); // Debugging missing file
|
|
110
|
+
fs.cpSync(uiSrc, path.join(root, 'agent-os-ui'), copyOptions);
|
|
111
|
+
fs.renameSync(path.join(root, 'agent-os-ui', 'package.json.manifest'), path.join(root, 'agent-os-ui', 'package.json'));
|
|
110
112
|
|
|
111
113
|
// 3. Configure Workspace
|
|
112
114
|
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
|
+
}
|