-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.91 KB
/
Copy pathpackage.json
File metadata and controls
112 lines (112 loc) · 2.91 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
102
103
104
105
106
107
108
109
110
111
112
{
"name": "agent-maestro",
"version": "1.11.0",
"description": "Agent Maestro — studio graphique d'agents IA : rôles, hiérarchie, documents, mémoire, skills, boucles, routines, multi-LLM (FR/EN)",
"author": "Jean-Michel Saint-Supery",
"license": "UNLICENSED",
"main": "electron/main.cjs",
"scripts": {
"build": "vite build",
"start": "npm run build && electron .",
"dev:renderer": "vite",
"dev:electron": "VITE_DEV_SERVER_URL=http://localhost:5183 electron .",
"test": "node test/engine.test.cjs && node test/loops.test.cjs && node test/docs.test.cjs && node test/providers.test.cjs && node test/langue.test.cjs && node test/presence.test.cjs && node test/espaces.test.cjs && node test/architecte.test.cjs && node test/aide.test.cjs && node test/meta.test.cjs",
"dist:mac": "npm run build && electron-builder --mac",
"dist:win": "npm run build && electron-builder --win",
"dist": "npm run build && electron-builder"
},
"build": {
"appId": "fr.pilpoil.agent-maestro",
"productName": "Agent Maestro",
"files": [
"dist/**",
"electron/**",
"package.json"
],
"directories": {
"output": "release"
},
"mac": {
"category": "public.app-category.productivity",
"target": [
"dmg",
"zip"
],
"icon": "build/icon.png",
"artifactName": "Agent Maestro-${version}-${arch}.${ext}"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "build/icon.png",
"legalTrademarks": "Copyright © 2026 Jean-Michel Saint-Supery"
},
"nsis": {
"oneClick": true,
"language": "1036"
},
"linux": {
"target": [
"AppImage"
],
"icon": "build/icon.png",
"category": "Utility"
},
"copyright": "Copyright © 2026 Jean-Michel Saint-Supery",
"dmg": {
"title": "Agent Maestro ${version}",
"artifactName": "Agent Maestro-${version}.${ext}",
"contents": [
{
"x": 150,
"y": 190,
"type": "file"
},
{
"x": 420,
"y": 190,
"type": "link",
"path": "/Applications"
}
],
"window": {
"width": 570,
"height": 380
}
}
},
"dependencies": {
"@xyflow/react": "^12.11.2",
"mammoth": "^1.12.0",
"node-cron": "^4.6.0",
"pdf-parse": "^2.4.5",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@vitejs/plugin-react": "^6.0.4",
"electron": "^43.2.0",
"electron-builder": "^26.15.3",
"vite": "^8.1.5"
},
"repository": {
"type": "git",
"url": "https://github.com/p3x2007-ops/agent-maestro"
},
"bugs": {
"url": "https://github.com/p3x2007-ops/agent-maestro/issues"
},
"keywords": [
"ai",
"agents",
"llm",
"multi-agent",
"electron",
"openai-compatible",
"ollama",
"local-first",
"desktop"
]
}