-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 908 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 908 Bytes
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
{
"name": "relayflows",
"version": "1.0.3",
"private": true,
"description": "Agent Relay workflow engine and CLI",
"type": "module",
"workspaces": [
"packages/core",
"packages/cli",
"packages/github-primitive",
"packages/slack-primitive",
"packages/browser-primitive"
],
"scripts": {
"build:primitives": "npm run build --workspace=packages/github-primitive --workspace=packages/slack-primitive --workspace=packages/browser-primitive",
"build": "npm run build:primitives && npm run build --workspace=packages/core && npm run build --workspace=packages/cli",
"typecheck": "npm run build:primitives && npm run typecheck --workspace=packages/core && npm run typecheck --workspace=packages/cli",
"test": "npm run test --workspace=packages/core"
},
"devDependencies": {
"@types/node": "^22.10.7",
"typescript": "^5.7.3",
"vitest": "^2.1.9"
}
}