-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.49 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.49 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
{
"name": "@gemmate/ai-crew-orchestrator",
"private": false,
"version": "1.1.1",
"description": "AI Crew Orchestrator - Manage and coordinate multiple AI agents with web search, file attachments, and recording capabilities",
"type": "module",
"main": "dist/index.html",
"bin": {
"gemmate": "./bin/gemmate"
},
"files": [
"dist/**/*",
"bin/**/*",
"README.md"
],
"keywords": [
"ai",
"agents",
"gemini",
"orchestrator",
"chatbot",
"automation",
"crew",
"artificial-intelligence"
],
"author": "vishapp",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/VishApp/gemmate.git"
},
"homepage": "https://github.com/VishApp/gemmate#readme",
"bugs": {
"url": "https://github.com/VishApp/gemmate/issues"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"start": "npm run serve",
"serve": "npx serve dist -s",
"postinstall": "echo '\n🤖 GemMate AI Crew Orchestrator installed successfully!\n\nTo start the application:\n npx serve node_modules/@gemmate/ai-crew-orchestrator/dist -s\n\nThen open: http://localhost:3000\n\nFor development:\n git clone https://github.com/VishApp/gemmate\n cd gemmate\n npm install\n npm run dev\n'"
},
"dependencies": {
"react-dom": "^19.1.0",
"react": "^19.1.0",
"@google/genai": "^1.10.0"
},
"devDependencies": {
"@types/node": "^22.14.0",
"typescript": "~5.8.2",
"vite": "^6.2.0"
}
}