@theaileverage/marionette 0.1.0

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/package.json ADDED
@@ -0,0 +1,51 @@
1
+ {
2
+ "name": "@theaileverage/marionette",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "engines": {
6
+ "node": ">=22.13"
7
+ },
8
+ "scripts": {
9
+ "dev": "node --import tsx src/cli.ts serve",
10
+ "start": "node dist/cli.js serve",
11
+ "build": "tsc && vite build && node scripts/bundle.mjs",
12
+ "check": "tsc --noEmit && tsc -p tsconfig.web.json && tsc -p tsconfig.tests.json",
13
+ "test": "node --import tsx --test tests/*.test.ts",
14
+ "cli": "node --import tsx src/cli.ts",
15
+ "mcp": "node --import tsx src/mcp.ts",
16
+ "format": "prettier --write src web tests scripts *.json *.ts *.md",
17
+ "format:check": "prettier --check src web tests scripts *.json *.ts *.md",
18
+ "prepack": "npm run check && npm test && npm run build"
19
+ },
20
+ "devDependencies": {
21
+ "@types/express": "^5.0.0",
22
+ "@types/node": "^22.15.0",
23
+ "@types/react": "^19.1.0",
24
+ "@types/react-dom": "^19.1.0",
25
+ "esbuild": "^0.28.2",
26
+ "prettier": "^3.9.6",
27
+ "tsx": "^4.20.0",
28
+ "typescript": "^5.8.3",
29
+ "vite": "^6.3.5",
30
+ "@modelcontextprotocol/sdk": "^1.27.1",
31
+ "express": "^5.1.0",
32
+ "lucide-react": "^0.468.0",
33
+ "react": "^19.1.0",
34
+ "react-dom": "^19.1.0",
35
+ "zod": "^3.25.0"
36
+ },
37
+ "description": "Persistent multi-agent orchestration for Herdr, with a named lead, MCP tools, and a local dashboard.",
38
+ "bin": {
39
+ "marionette": "dist/cli.js"
40
+ },
41
+ "files": [
42
+ "dist/cli.js",
43
+ "dist/mcp.js",
44
+ "public/",
45
+ "README.md",
46
+ "THIRD_PARTY_NOTICES.md"
47
+ ],
48
+ "publishConfig": {
49
+ "access": "public"
50
+ }
51
+ }