-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
47
48
49
50
51
52
53
54
55
56
57
58
{
"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": "^2.4.16",
"@changesets/cli": "^2.28.1",
"@changesets/changelog-github": "^0.6.0",
"@types/node": "^26.1.0",
"@vitest/coverage-v8": "^4.1.5",
"turbo": "^2.9.16",
"typescript": "^6.0.3",
"vite": ">=8.0.16",
"vitest": "^4.1.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
],
"overrides": {
"fast-uri": ">=3.1.2",
"hono": ">=4.12.25",
"ip-address": ">=10.1.1",
"protobufjs": ">=8.4.1",
"@grpc/grpc-js": ">=1.14.4",
"ws": ">=8.21.0",
"form-data": ">=4.0.6"
}
},
"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"
}
}