forked from zeenie-ai/OpenCompany
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.61 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
{
"name": "machinaos",
"version": "0.0.48",
"description": "Open source workflow automation platform with AI agents, React Flow, and n8n-inspired architecture",
"type": "module",
"keywords": [
"workflow",
"automation",
"react-flow",
"ai-agent",
"langchain",
"langgraph",
"n8n",
"whatsapp",
"android",
"low-code",
"no-code"
],
"author": "Rohit G <trohitg@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/trohitg/MachinaOS#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/trohitg/MachinaOS.git"
},
"bugs": {
"url": "https://github.com/trohitg/MachinaOS/issues"
},
"bin": {
"machina": "./bin/cli.js"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"bin/",
"scripts/",
"workflows/",
"client/src/",
"client/public/",
"client/dist/",
"client/*.json",
"client/*.html",
"client/*.js",
"client/*.ts",
"client/*.conf",
"client/Dockerfile",
"server/",
"!server/.venv/",
"!server/**/__pycache__/",
"!server/data/",
"!**/node_modules/",
"!**/.vite/",
".env.template",
"README.md",
"install.sh",
"install.ps1"
],
"workspaces": [
"client"
],
"scripts": {
"start": "node scripts/start.js",
"dev": "node scripts/dev.js",
"start:temporal": "cross-env TEMPORAL_ENABLED=true node scripts/start.js",
"client:start": "cd client && npm run start",
"python:start": "cd server && uv run uvicorn main:app --host 127.0.0.1 --port 3010 --log-level warning",
"python:daemon": "cd server && uv run uvicorn main:app --host 0.0.0.0 --port 3010 --log-level warning",
"temporal:start": "temporal-server api",
"temporal:stop": "temporal-server stop",
"temporal:status": "temporal-server status",
"temporal:worker": "cd server && uv run python -m services.temporal.worker",
"whatsapp:start": "edgymeow start",
"whatsapp:stop": "edgymeow stop",
"whatsapp:status": "edgymeow status",
"whatsapp:api": "edgymeow api --foreground",
"whatsapp:build": "edgymeow build",
"build": "node scripts/build.js",
"clean": "node scripts/clean.js",
"stop": "node scripts/stop.js",
"docker:up": "node scripts/docker.js up",
"docker:down": "node scripts/docker.js down",
"docker:logs": "node scripts/docker.js logs",
"docker:build": "node scripts/docker.js build",
"docker:restart": "node scripts/docker.js restart",
"docker:prod:up": "docker-compose -f docker-compose.prod.yml up -d",
"docker:prod:down": "docker-compose -f docker-compose.prod.yml down",
"docker:prod:build": "docker-compose -f docker-compose.prod.yml build",
"docker:prod:logs": "docker-compose -f docker-compose.prod.yml logs -f",
"deploy": "bash deploy.sh",
"deploy:gcp": "bash deploy.sh",
"daemon:install": "node scripts/daemon.js install",
"daemon:uninstall": "node scripts/daemon.js uninstall",
"daemon:status": "node scripts/daemon.js status",
"daemon:start": "node scripts/daemon.js start",
"daemon:stop": "node scripts/daemon.js stop",
"daemon:restart": "node scripts/daemon.js restart",
"version:sync": "node scripts/sync-version.js",
"prepublishOnly": "node scripts/sync-version.js && node -e \"const p=require('./package.json'); if(!p.bin||!p.version){process.exit(1)}\"",
"preinstall": "node scripts/preinstall.js",
"postinstall": "node scripts/postinstall.js",
"preuninstall": "node scripts/preinstall.js"
},
"dependencies": {
"concurrently": "^9.2.1",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1",
"temporal-server": "^0.0.9",
"edgymeow": "^0.0.18"
}
}