@theproductguy/create-mission-control 1.0.11 → 1.0.13

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theproductguy/create-mission-control",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Scaffolding tool for Agent OS applications",
5
5
  "type": "module",
6
6
  "bin": {
@@ -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
+ }