agentmomo 0.1.1

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/dist/vite.svg ADDED
@@ -0,0 +1,4 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100">
2
+ <rect width="100" height="100" rx="12" fill="#1a1a2e"/>
3
+ <text x="50" y="62" text-anchor="middle" font-size="50" fill="#6366f1">🏢</text>
4
+ </svg>
package/package.json ADDED
@@ -0,0 +1,76 @@
1
+ {
2
+ "name": "agentmomo",
3
+ "version": "0.1.1",
4
+ "description": "3D visualization of MCP agent activity — watch your AI tools work in a virtual office",
5
+ "type": "module",
6
+ "bin": {
7
+ "agentmomo": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist/"
11
+ ],
12
+ "scripts": {
13
+ "dev": "concurrently \"vite\" \"tsx watch proxy/server.ts\"",
14
+ "dev:client": "vite",
15
+ "dev:proxy": "tsx watch proxy/server.ts",
16
+ "dev:mock": "tsx scripts/mock-traffic.ts",
17
+ "build": "tsc -b && vite build",
18
+ "start": "tsx proxy/server.ts",
19
+ "build:wrapper": "npx esbuild proxy/stdio-wrapper.ts --bundle --platform=node --format=esm --outfile=proxy/dist/stdio-wrapper.js",
20
+ "build:hook": "npx esbuild proxy/claude-code-hook.ts --bundle --platform=node --format=cjs --outfile=proxy/dist/claude-code-hook.cjs",
21
+ "build:server": "npx esbuild proxy/server.ts --bundle --platform=node --format=esm --outfile=dist/server.js",
22
+ "build:cli": "npx esbuild bin/cli.ts --bundle --platform=node --format=esm --banner:js=\"#!/usr/bin/env node\" --outfile=dist/cli.js",
23
+ "build:npm": "npm run build && npm run build:server && npm run build:cli && npx esbuild proxy/stdio-wrapper.ts --bundle --platform=node --format=esm --outfile=dist/stdio-wrapper.js && npx esbuild proxy/claude-code-hook.ts --bundle --platform=node --format=cjs --outfile=dist/claude-code-hook.cjs",
24
+ "preview": "vite preview"
25
+ },
26
+ "dependencies": {
27
+ "@emotion/react": "^11.14.0",
28
+ "@emotion/styled": "^11.14.1",
29
+ "@mui/icons-material": "^7.3.9",
30
+ "@mui/material": "^7.3.9",
31
+ "@radix-ui/react-collapsible": "^1.1.12",
32
+ "@radix-ui/react-dialog": "^1.1.15",
33
+ "@radix-ui/react-dropdown-menu": "^2.1.16",
34
+ "@radix-ui/react-scroll-area": "^1.2.10",
35
+ "@radix-ui/react-separator": "^1.1.8",
36
+ "@radix-ui/react-slider": "^1.3.6",
37
+ "@radix-ui/react-slot": "^1.2.4",
38
+ "@radix-ui/react-switch": "^1.2.6",
39
+ "@radix-ui/react-tabs": "^1.1.13",
40
+ "@radix-ui/react-tooltip": "^1.2.8",
41
+ "@react-three/drei": "^10.0.0",
42
+ "@react-three/fiber": "^9.0.0",
43
+ "@react-three/postprocessing": "^3.0.4",
44
+ "@supabase/supabase-js": "^2.98.0",
45
+ "class-variance-authority": "^0.7.1",
46
+ "clsx": "^2.1.1",
47
+ "cors": "^2.8.6",
48
+ "dotenv": "^17.3.1",
49
+ "express": "^4.21.0",
50
+ "http-proxy-middleware": "^3.0.0",
51
+ "lucide-react": "^0.577.0",
52
+ "react": "^19.0.0",
53
+ "react-dom": "^19.0.0",
54
+ "tailwind-merge": "^3.5.0",
55
+ "tailwindcss-animate": "^1.0.7",
56
+ "three": "^0.172.0",
57
+ "ws": "^8.18.0",
58
+ "zustand": "^5.0.0"
59
+ },
60
+ "devDependencies": {
61
+ "@types/cors": "^2.8.19",
62
+ "@types/express": "^5.0.0",
63
+ "@types/react": "^19.0.0",
64
+ "@types/react-dom": "^19.0.0",
65
+ "@types/three": "^0.172.0",
66
+ "@types/ws": "^8.5.0",
67
+ "@vitejs/plugin-react": "^4.3.0",
68
+ "autoprefixer": "^10.4.27",
69
+ "concurrently": "^9.1.0",
70
+ "postcss": "^8.5.8",
71
+ "tailwindcss": "^3.4.19",
72
+ "tsx": "^4.19.0",
73
+ "typescript": "~5.7.0",
74
+ "vite": "^6.2.0"
75
+ }
76
+ }