-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.69 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.69 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
{
"name": "@vrsen/openswarm",
"version": "0.1.27",
"description": "An open-source multi-agent AI team built on Agency Swarm",
"license": "MIT",
"bin": {
"openswarm": "./bin/openswarm"
},
"files": [
"bin/",
"run_utils.py",
"onboard.py",
"swarm.py",
"config.py",
"helpers.py",
"server.py",
"shared_instructions.md",
"shared_tools/",
"orchestrator/",
"data_analyst_agent/",
"deep_research/",
"docs_agent/",
"image_generation_agent/",
"slides_agent/",
"video_generation_agent/",
"virtual_assistant/",
"patches/",
"pyproject.toml",
"package.json",
"package-lock.json"
],
"scripts": {
"postinstall": "node -e \"const fs=require('fs');const path=require('path');const cp=require('child_process');const pkg=__dirname;const patchTarget=path.join(pkg,'node_modules','dom-to-pptx');const patchCli=path.join(pkg,'node_modules','patch-package','index.js');if(fs.existsSync(patchTarget)&&fs.existsSync(patchCli)){cp.execFileSync(process.execPath,[patchCli],{cwd:pkg,stdio:'inherit'});}try{fs.chmodSync(path.join(pkg,'bin','openswarm'),0o755)}catch(e){}\""
},
"dependencies": {
"@vrsen/agentswarm": "latest",
"dom-to-pptx": "1.1.5",
"patch-package": "^8.0.1",
"playwright": "^1.59.1",
"pptxgenjs": "^3.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.0",
"sharp": "^0.33.0"
},
"engines": {
"node": ">=18.0.0",
"python": ">=3.10"
},
"devDependencies": {
"turbo": "^2.9.6"
}
}