-
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.14 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.14 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": "cycgraph",
"version": "1.0.0",
"private": true,
"license": "Apache-2.0",
"author": "Will McMahan",
"repository": {
"type": "git",
"url": "git+https://github.com/wmcmahan/cycgraph.git"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "npm run build --workspace=packages/orchestrator && npm run build --workspace=packages/memory && npm run build --workspace=packages/context-engine && npm run build --workspace=packages/orchestrator-postgres && npm run build --workspace=packages/evals",
"test": "npm run test --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"smoke": "tsx scripts/integration-smoke.ts",
"bench": "npm run bench --workspace=packages/benchmarks",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "npm run build && changeset publish"
},
"engines": {
"node": ">=24.0.0"
},
"overrides": {
"underscore": ">=1.13.8",
"esbuild": ">=0.25.0",
"@ai-sdk/provider": "^3.0.10",
"@types/node": "^25.3.5"
},
"devDependencies": {
"@changesets/cli": "^2.31.0"
}
}