-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.44 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
{
"name": "botfleet-monorepo",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"examples/*"
],
"overrides": {
"undici": "^6.27.0"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"dev": "npm run dev --workspace @botfleet/control-plane",
"build:packages": "npm run build --workspace @botfleet/protocol && npm run build --workspace @botfleet/workload-spec && npm run build --workspace @botfleet/scheduler && npm run build --workspace @botfleet/runtime-sdk && npm run build --workspace @botfleet/adapter-discordjs && npm run build --workspace @botfleet/adapter-eris",
"build": "npm run build:packages && npm run build --workspace @botfleet/control-plane",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:integration": "npm run test:integration --workspaces --if-present",
"test:e2e": "npm run test:e2e --workspaces --if-present",
"verify": "npm run lint && npm run typecheck && npm run test && npm run build",
"worker:ai": "npm run worker:ai --workspace @botfleet/control-plane",
"agent-gateway": "npm run agent-gateway --workspace @botfleet/control-plane",
"agent:dev": "npm run dev --workspace @botfleet/agent",
"demo:distributed": "npm run demo:distributed --workspace @botfleet/control-plane"
}
}