-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.54 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": "relay-dashboard-monorepo",
"version": "2.0.95",
"private": true,
"description": "Monorepo for Agent Relay dashboard packages",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev -w @agent-relay/dashboard\" \"npm run dev -w @agent-relay/dashboard-server\"",
"dev:relay": "npm run build && cd ../relay && node dist/src/cli/bootstrap.js up --verbose",
"dev:mock": "concurrently \"npm run dev -w @agent-relay/dashboard\" \"npm run dev:mock -w @agent-relay/dashboard-server\"",
"dev:mock:cloud": "concurrently \"NEXT_PUBLIC_FORCE_CLOUD_MODE=true npm run dev -w @agent-relay/dashboard\" \"npm run dev:mock -w @agent-relay/dashboard-server\"",
"build": "npm run build -w @agent-relay/dashboard-server && npm run build -w @agent-relay/dashboard && rm -rf packages/dashboard-server/out && cp -r packages/dashboard/out packages/dashboard-server/out",
"start": "concurrently \"npm run start -w @agent-relay/dashboard\" \"npm run start -w @agent-relay/dashboard-server\"",
"start:mock": "concurrently \"npm run start -w @agent-relay/dashboard\" \"npm run start:mock -w @agent-relay/dashboard-server\"",
"lint": "echo 'TODO: Set up ESLint for both packages'",
"typecheck": "npm run typecheck --workspaces",
"test": "npm run test --workspaces",
"test:watch": "npm run test:watch --workspaces",
"test:coverage": "npm run test:coverage --workspaces",
"clean": "npm run clean --workspaces && rm -rf node_modules",
"publish:dashboard": "npm publish -w @agent-relay/dashboard",
"publish:server": "npm publish -w @agent-relay/dashboard-server",
"publish:all": "npm run publish:dashboard && npm run publish:server",
"version:patch": "npm version patch --workspaces --no-git-tag-version",
"version:minor": "npm version minor --workspaces --no-git-tag-version",
"version:major": "npm version major --workspaces --no-git-tag-version"
},
"devDependencies": {
"agent-trajectories": "^0.3.0",
"concurrently": "^8.2.2",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentWorkforce/relay-dashboard.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@agent-relay/bridge": "^2.3.14",
"@agent-relay/config": "^3.2.5",
"@agent-relay/protocol": "^2.3.14",
"@agent-relay/sdk": "^3.2.5",
"@agent-relay/storage": "^2.3.14",
"@agent-relay/trajectory": "^3.2.5",
"@agent-relay/utils": "^3.2.5",
"@agent-relay/wrapper": "^2.3.14",
"yaml": "^2.8.2"
}
}