-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.19 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.19 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
{
"name": "project-graph-agent",
"version": "1.0.0",
"description": "Jsonnet-driven project control system for AI agents",
"main": "scripts/graph_generator.mjs",
"type": "module",
"scripts": {
"clean": "node scripts/clean_project.mjs",
"sync": "node scripts/sync_to_standalone.mjs",
"publish": "node scripts/publish_workflow.mjs",
"graph:audit": "node scripts/graph_generator.mjs",
"graph:validate": "node scripts/graph_validator.mjs",
"graph:commit": "node scripts/ai_committer.mjs",
"sync:ai-commands": "node scripts/sync_ai_commands.mjs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/LebedevIV/ProjectGraphAgent.git"
},
"keywords": [
"ai",
"agents",
"project-management",
"jsonnet",
"graph",
"automation",
"drift-detection"
],
"author": "Igor Lebedev",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"jsonnet": "^0.5.0-beta",
"minimatch": "^9.0.3"
},
"bugs": {
"url": "https://github.com/LebedevIV/ProjectGraphAgent/issues"
},
"homepage": "https://github.com/LebedevIV/ProjectGraphAgent#readme"
}