-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 792 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "proactive-agent",
"version": "0.10.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"sync:version": "bash scripts/sync-version.sh",
"build": "bash scripts/publish-proactive.sh --build-only",
"typecheck": "npm run typecheck --workspace=@proactive-agent/core && npm run typecheck --workspace=@proactive-agent/adapters && npm run typecheck --workspace=@proactive-agent/mcp",
"test": "vitest run",
"start:mcp": "npm run build && node packages/proactive-mcp/dist/index.js",
"start:today": "npm run build && node packages/proactive-mcp/dist/index.js --today"
},
"devDependencies": {
"@anthropic-ai/mcpb": "^2.1.2",
"@types/node": "^22.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}