-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.33 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.33 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
37
38
39
40
41
42
43
44
45
46
{
"name": "agent-mesh",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Multi-agent orchestration mesh for complex workflows — monorepo",
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"license": "MIT",
"packageManager": "pnpm@10.22.0",
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"lint": "biome check .",
"format": "biome format --write .",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
"clean": "turbo run clean && rm -rf node_modules",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.28.1",
"@changesets/changelog-github": "^0.6.0",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.5",
"turbo": "^2.5.0",
"typescript": "^6.0.3",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/reaatech/agent-mesh.git"
},
"homepage": "https://github.com/reaatech/agent-mesh#readme",
"bugs": {
"url": "https://github.com/reaatech/agent-mesh/issues"
}
}