-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 968 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 968 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "agent-wallclock",
"version": "0.1.0",
"private": true,
"description": "Local-only wall-clock, session, and effort context for any language model host",
"license": "Apache-2.0",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build -w @agent-wallclock/core && npm run build -w @agent-wallclock/cli && npm run build -w @agent-wallclock/mcp",
"test": "npm run test -w @agent-wallclock/core && npm run test -w @agent-wallclock/cli",
"smoke": "npm run build && node scripts/smoke.mjs && node scripts/mcp-smoke.mjs",
"wallclock": "node -e \"require('fs').accessSync('packages/cli/dist/bin.js')\" && node packages/cli/dist/bin.js",
"qa:local": "node scripts/qa-local.mjs",
"lint": "npm run lint -w @agent-wallclock/core && npm run lint -w @agent-wallclock/cli && npm run lint -w @agent-wallclock/mcp",
"publish:dry-run": "node scripts/publish-dry-run.mjs"
},
"engines": {
"node": ">=20"
}
}