-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "gitme",
"version": "1.0.0",
"description": "AI-powered Discord bot that watches GitHub repos and posts smart, color-coded notifications using Google Gemini",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"build:action": "ncc build action/index.js -o dist --license licenses.txt",
"test": "echo \"Error: no test specified\" && exit 1",
"test:gemma": "node tests/test-gemma-summary.js"
},
"keywords": [
"discord",
"discord-bot",
"github",
"webhook",
"ai",
"gemini",
"git",
"notifications",
"commit-summary"
],
"author": "Kailash (https://github.com/gubbysbyte)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gubbysbyte/gitme.git"
},
"bugs": {
"url": "https://github.com/gubbysbyte/gitme/issues"
},
"homepage": "https://github.com/gubbysbyte/gitme#readme",
"packageManager": "pnpm@10.29.2",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@google/generative-ai": "^0.24.1",
"body-parser": "^2.2.2",
"discord.js": "^14.25.1",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"ngrok": "^5.0.0-beta.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3"
}
}