-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.03 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "agentic-monorepo",
"version": "1.1.0",
"private": true,
"description": "Unified TypeScript and Python AI agent orchestration toolkit monorepo",
"type": "module",
"scripts": {
"build": "nx run-many -t build",
"dev": "nx run-many -t dev --parallel",
"test": "nx run-many -t test",
"test:coverage": "nx run-many -t test:coverage",
"lint": "nx run-many -t lint",
"typecheck": "nx run-many -t typecheck",
"check": "biome check .",
"check:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"docs": "nx run agentic-docs:build",
"monitor:npm": "tsx scripts/monitor-npm.ts",
"clean": "pnpm -r exec rm -rf dist && rm -rf node_modules .nx",
"affected:test": "nx affected -t test",
"affected:build": "nx affected -t build",
"affected:lint": "nx affected -t lint",
"postinstall": "node scripts/build-deps.js || true"
},
"devDependencies": {
"@biomejs/biome": "^2.0.0",
"@nx/js": "^22.5.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^7.1.0",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.15.0",
"@vitest/coverage-v8": "^4.1.0",
"fast-check": "^4.5.2",
"nx": "^22.5.2",
"semantic-release": "^25.0.2",
"tsx": "4.21.0",
"typedoc": "^0.28.0",
"typescript": "^5.7.0",
"vitest": "^4.1.0"
},
"engines": {
"node": ">=22.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.17.0",
"keywords": [
"ai",
"agent",
"fleet",
"orchestration",
"triage",
"sandbox",
"docker",
"cursor",
"anthropic",
"openai",
"claude",
"ollama",
"github",
"automation",
"devops",
"typescript",
"cli",
"mcp",
"monorepo"
],
"author": "Jon Bogaty",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jbcom/agentic.git"
},
"homepage": "https://github.com/jbcom/agentic#readme",
"bugs": {
"url": "https://github.com/jbcom/agentic/issues"
}
}