-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.76 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.76 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "agenthq",
"version": "2.0.0",
"description": "Agent-native knowledge graph for coordinated development",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"type": "module",
"private": false,
"bin": {
"agenthq": "dist/bin/agenthq.js",
"hq": "dist/bin/hq.js"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc -p tsconfig.build.json && node scripts/copy-templates.mjs",
"verify-publish": "node scripts/verify-publish.mjs",
"ship": "node scripts/ship.mjs",
"ship:patch": "node scripts/ship.mjs patch",
"ship:minor": "node scripts/ship.mjs minor",
"ship:major": "node scripts/ship.mjs major",
"dev": "node dist/bin/agenthq.js --help",
"agenthq": "node dist/bin/agenthq.js",
"hq": "node dist/bin/hq.js",
"demo:eav": "bun run examples/eav-demo.ts",
"demo:graph": "bun run examples/graph-demo.ts",
"demo:agent-graph": "bun run examples/agent-graph-demo.ts",
"demo:tql-graph": "bun run examples/tql-graph-demo.ts",
"demo:products": "bun run examples/products-final-demo.ts",
"demo:tot": "bun run examples/tot-demo.ts",
"demo:real-data": "bun run examples/real-data-demo.ts",
"demo:enhanced-real-data": "bun run examples/enhanced-real-data-demo.ts",
"demos": "bun run examples/run-all-demos.ts",
"tql": "bun run src/cli/tql.ts",
"demo:tql": "bun run examples/tql-demo.ts",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build && bun test",
"test": "vitest run",
"test:watch": "vitest",
"test:workflow": "vitest run test/workflow-hardening.test.ts"
},
"keywords": [
"agent-native",
"ai-agents",
"knowledge-graph",
"project-management",
"task-management",
"spec-driven-development",
"cursor",
"windsurf",
"copilot",
"datalog",
"json-ld",
"local-first",
"developer-tools",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/trentbrew/agenthq.git"
},
"bugs": {
"url": "https://github.com/trentbrew/agenthq/issues"
},
"homepage": "https://github.com/trentbrew/agenthq#readme",
"author": "Trent Brew <trentbrew@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/bun": "latest",
"@types/yaml": "^1.9.7",
"typescript": "^5",
"vitest": "^1.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md",
"docs"
],
"dependencies": {
"@ai-sdk/openai": "^2.0.30",
"ai": "^5.0.44",
"ajv": "^8.17.1",
"commander": "^14.0.1",
"yaml": "^2.8.1",
"zod": "^4.1.8"
}
}