-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 1.94 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
79
80
{
"name": "@c4a/agent-graph",
"version": "0.2.2",
"description": "Graph Engineering for Agent Skills: model-free work contracts for fact-grounded routing, progressive context, and recoverable execution.",
"type": "module",
"packageManager": "bun@1.3.9",
"sideEffects": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/context4ai/agent-graph.git"
},
"homepage": "https://github.com/context4ai/agent-graph#readme",
"bugs": {
"url": "https://github.com/context4ai/agent-graph/issues"
},
"keywords": [
"agent",
"agent-skills",
"workflow",
"graph",
"graph-engineering",
"cli"
],
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js"
},
"./schemas/*": "./schemas/*",
"./templates/*": "./templates/*"
},
"bin": {
"agent-graph": "dist/agent-graph.mjs"
},
"files": [
"dist",
"schemas",
"templates",
"examples",
"docs",
"README.md",
"README.zh-CN.md",
"CHANGELOG.md",
"CONTRIBUTING.md",
"DEVELOPMENT.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"build": "bun run scripts/build.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "bun test tests/unit tests/integration",
"test:unit": "bun test tests/unit",
"test:integration": "bun test tests/integration",
"verify": "bun run typecheck && bun run lint && bun run test && bun run build",
"prepack": "bun run verify"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/bun": "^1.3.9",
"@types/node": "^24.10.1",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"commander": "^14.0.2",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"yaml": "^2.8.2"
}
}