-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 3.5 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 3.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "meow-ops",
"private": true,
"version": "1.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"preview": "vite preview",
"test:sync": "node --test sync/__tests__/*.test.mjs",
"test:learning": "node --test sync/__tests__/learning-quest.test.mjs",
"learning:seed": "node sync/learning-quest-cli.mjs seed-agent-engineering",
"learning:summary": "node sync/learning-quest-cli.mjs summary",
"test:companion": "node --test src/companion-v2/__tests__/*.test.mjs",
"test:sanctum": "node --test src/pages/sanctum/__tests__/*.test.mjs",
"test:e2e": "playwright test",
"loop:capture": "node sync/loop-capture.mjs",
"loop:propose": "node sync/loop-propose.mjs",
"loop:review": "node sync/loop-review-fix.mjs --propose",
"loop:simulate": "node sync/loop-simulate.mjs",
"digest": "node sync/loop-digest.mjs",
"daily": "node sync/daily-operator.mjs",
"daily:cloud": "node sync/cloud-daily-review.mjs",
"agents:install": "node sync/install-macos-agents.mjs --activate",
"execute": "node sync/loop-execute.mjs",
"intake": "node sync/intake-local.mjs",
"intake:codex": "node sync/intake-codex.mjs",
"intake:antigravity": "node sync/intake-antigravity.mjs",
"health": "node sync/automation-health.mjs",
"eval": "node sync/loop-eval.mjs",
"sync:superadmin": "node sync/superadmin-usage.mjs",
"project:register": "node sync/project-control-cli.mjs register --name 'Meow Ops' --alias meow-ops",
"project:status": "node sync/project-control-cli.mjs status",
"project:adapters:preview": "node sync/project-control-cli.mjs adapters-preview",
"project:adapters:apply": "node sync/project-control-cli.mjs adapters-apply",
"project:adapters:rollback": "node sync/project-control-cli.mjs adapters-rollback",
"evidence:reindex": "node sync/project-evidence-cli.mjs reindex",
"evidence:status": "node sync/project-evidence-cli.mjs status",
"gen:assets": "node scripts/generate-companion-assets.js",
"gen:cats": "node scripts/generate-companion-assets.js --cats",
"gen:rooms": "node scripts/generate-companion-assets.js --rooms",
"gen:accessories": "node scripts/generate-companion-assets.js --accessories",
"gen:foods": "node scripts/generate-companion-assets.js --foods",
"menubar:build": "bash menubar/build.sh",
"menubar:open": "open ~/Applications/MeowOpsBar.app"
},
"dependencies": {
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@supabase/supabase-js": "^2.101.1",
"@tailwindcss/vite": "^4.2.2",
"@types/d3": "^7.4.3",
"@xstate/react": "^5.0.5",
"@xyflow/react": "^12.11.0",
"ag-grid-community": "^33.3.2",
"ag-grid-react": "^33.3.2",
"d3": "^7.9.0",
"framer-motion": "^12.38.0",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"recharts": "^3.8.1",
"tailwindcss": "^4.2.2",
"three": "^0.183.2",
"xstate": "^5.30.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/three": "^0.170.0",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^10.0.1",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.2",
"exceljs": "^4.4.0",
"globals": "^17.4.0",
"playwright": "^1.59.1",
"typescript": "^6.0.3",
"vite": "^8.0.16"
},
"overrides": {
"uuid": "11.1.1"
}
}