forked from abensur/github-activity-digest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.25 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
{
"name": "github-activity-digest",
"version": "2.0.0",
"description": "AI-powered GitHub activity summarizer with Bun, TypeScript, Zod validation and comprehensive testing",
"type": "module",
"main": "index.ts",
"scripts": {
"start": "bun run index.ts",
"summary": "bun run index.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"typecheck": "tsc --noEmit"
},
"keywords": [
"github",
"activity",
"summary",
"ai",
"claude",
"openai",
"digest",
"weekly-report",
"typescript",
"bun",
"zod",
"citty",
"automation",
"devtools"
],
"author": "Rafael Abensur <rafael@abensur.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abensur/github-activity-digest"
},
"bugs": {
"url": "https://github.com/abensur/github-activity-digest/issues"
},
"homepage": "https://github.com/abensur/github-activity-digest#readme",
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.73.0",
"@octokit/rest": "^22.0.1",
"citty": "^0.2.0",
"consola": "^3.4.2",
"zod": "^4.3.6"
},
"optionalDependencies": {
"openai": "^6.18.0"
},
"devDependencies": {
"@types/bun": "latest"
}
}