-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.61 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.61 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
{
"name": "gitclaw",
"version": "1.1.6",
"description": "A universal git-native multimodal always learning AI Agent (TinyHuman)",
"author": "shreyaskapale",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-gitagent/gitclaw"
},
"homepage": "https://github.com/open-gitagent/gitclaw",
"keywords": [
"ai",
"agent",
"git",
"cli",
"sdk",
"llm"
],
"type": "module",
"files": [
"dist",
"README.md"
],
"main": "./dist/exports.js",
"types": "./dist/exports.d.ts",
"bin": {
"gitclaw": "./dist/index.js"
},
"exports": {
".": {
"import": "./dist/exports.js",
"types": "./dist/exports.d.ts"
},
"./cli": {
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && cp src/voice/ui.html dist/voice/",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --test test/*.test.ts --experimental-strip-types"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@googleworkspace/cli": "^0.8.1",
"@mariozechner/pi-agent-core": "^0.55.4",
"@mariozechner/pi-ai": "^0.55.4",
"@sinclair/typebox": "^0.34.41",
"baileys": "^7.0.0-rc.9",
"js-yaml": "^4.1.0",
"node-cron": "^3.0.3",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"peerDependencies": {
"gitmachine": ">=0.1.0"
},
"peerDependenciesMeta": {
"gitmachine": {
"optional": true
}
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"typescript": "^5.7.0"
}
}