-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.85 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.85 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
{
"name": "relayfile",
"license": "Apache-2.0",
"private": true,
"version": "0.8.15",
"description": "relayfile — real-time filesystem for humans and agents",
"workspaces": [
"packages/core",
"packages/sdk/typescript",
"packages/cli",
"packages/local-mount",
"packages/file-observer"
],
"scripts": {
"workflow": "agent-relay run",
"build": "npm run build --workspace=packages/core && npm run build --workspace=packages/sdk/typescript && npm run build --workspace=packages/local-mount && npm run build --workspace=packages/cli",
"test": "npm run test --workspace=packages/core && npm run test --workspace=packages/sdk/typescript && npm run test --workspace=packages/local-mount && npm run test --workspace=@relayfile/file-observer && npm run test:go",
"test:go": "go test ./...",
"typecheck": "npm run typecheck --workspace=packages/sdk/typescript && npm run typecheck --workspace=packages/local-mount && npm run typecheck:go",
"typecheck:go": "go vet ./...",
"evals:compile": "node scripts/evals/compile-cases.mjs",
"evals": "npm run evals:compile && node scripts/evals/run-relayfile-evals.mjs",
"evals:list": "npm run evals:compile && node scripts/evals/run-relayfile-evals.mjs --list",
"evals:offline": "npm run evals:compile && node scripts/evals/run-relayfile-evals.mjs --mode offline",
"evals:provider": "npm run evals:compile && node scripts/evals/run-relayfile-evals.mjs --provider",
"test:load:tier2-scoped-writeback": "node test/load/tier2-cfdo-scoped-writeback.mjs",
"test:load:tier2-scoped-writeback:self-test": "node test/load/tier2-cfdo-scoped-writeback.mjs --self-test"
},
"devDependencies": {
"@agent-assistant/telemetry": "^0.4.31",
"@agent-relay/sdk": "^4.0.28",
"@agentworkforce/workload-router": "^0.3.0",
"agent-trajectories": "^0.5.8",
"tsx": "^4.21.0"
}
}