-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.41 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.41 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
{
"name": "@shreyaskapale/gitagent",
"version": "0.1.7",
"description": "A framework-agnostic, git-native standard for defining AI agents",
"type": "module",
"bin": {
"gitagent": "./dist/index.js"
},
"scripts": {
"build": "tsc && chmod +x dist/index.js",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --test dist/**/*.test.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"git",
"mcp",
"a2a",
"finra",
"compliance",
"claude-code",
"openai",
"crewai",
"langchain",
"agent-framework",
"agent-standard",
"ai-agent",
"llm",
"agent-definition",
"version-control"
],
"author": "shreyaskapale",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-gitagent/gitagent.git"
},
"homepage": "https://gitagent.sh",
"bugs": {
"url": "https://github.com/open-gitagent/gitagent/issues"
},
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"spec/",
"examples/",
"README.md",
"docs.md"
],
"dependencies": {
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"inquirer": "^9.3.7",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.10.0",
"typescript": "^5.7.0"
}
}