forked from openai/symphony
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.9 KB
/
Copy pathpackage.json
File metadata and controls
101 lines (101 loc) · 2.9 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
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "fifony",
"version": "0.1.48",
"private": false,
"type": "module",
"license": "Apache-2.0",
"author": "Filipe Forattini <filipe@forattini.com.br>",
"description": "Filesystem-backed local orchestrator with a TypeScript CLI, MCP mode, and multi-agent Codex or Claude workflows.",
"keywords": [
"ai",
"agent",
"orchestrator",
"codex",
"claude",
"gemini",
"mcp",
"cli",
"automation"
],
"bin": {
"fifony": "./bin/fifony.js",
"fifony-wrap": "./bin/fifony-wrap.js"
},
"scripts": {
"prompts:generate": "node --import tsx ./scripts/generate-prompts.ts",
"start": "pnpm prompts:generate && node ./bin/fifony.js",
"dev": "pnpm prompts:generate && node ./bin/fifony.js --port 4000 --dev",
"dev:api": "pnpm prompts:generate && node ./bin/fifony.js --port 4000",
"dev:ui": "vite --config app/vite.config.js",
"build": "pnpm prompts:generate && tsup && vite build --config app/vite.config.js",
"build:server": "pnpm prompts:generate && tsup",
"build:ui": "vite build --config app/vite.config.js",
"pwa:check": "node --import tsx ./scripts/check-pwa.ts",
"prepack": "pnpm build",
"prepublishOnly": "pnpm build",
"mcp": "pnpm prompts:generate && node ./bin/fifony.js mcp",
"lint": "tsx ./scripts/lint.ts",
"test": "node --import tsx/esm --test 'tests/**/*.test.ts'",
"typecheck": "tsc --noEmit",
"release:check": "bash scripts/release-check.sh"
},
"files": [
"bin/",
"dist/**/*.js",
"app/dist/",
"README.md",
"LICENSE",
"NOTICE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/forattini-dev/fifony.git"
},
"bugs": {
"url": "https://github.com/forattini-dev/fifony/issues"
},
"homepage": "https://github.com/forattini-dev/fifony#readme",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=23"
},
"dependencies": {
"@huggingface/transformers": "^4.0.1",
"@logdna/tail-file": "^4.0.2",
"@viz-js/viz": "^3.25.0",
"@xyflow/react": "^12.10.2",
"cli-args-parser": "^1.0.6",
"node-cron": "^4.2.1",
"node-pty": "1.2.0-beta.12",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"raffel": "^1.0.26",
"react-hotkeys-hook": "^5.2.4",
"react-markdown": "^10.1.0",
"recker": "^1.0.101",
"s3db.js": "21.5.2",
"vaulter": "^1.0.73",
"web-push": "^3.6.7",
"yaml": "^2.8.3"
},
"devDependencies": {
"@tailwindcss/vite": "^4.2.2",
"@tanstack/react-query": "^5.96.2",
"@tanstack/react-router": "^1.168.10",
"@tanstack/router-plugin": "^1.167.12",
"@vitejs/plugin-react": "^6.0.1",
"daisyui": "^5.5.19",
"lucide-react": "^1.7.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sharp": "^0.34.5",
"tailwindcss": "^4.2.2",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.5"
}
}