forked from vucinatim/github-reporter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 861 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 861 Bytes
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
{
"name": "github-reporter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"bucket:clear": "tsx scripts/clear-bucket.ts",
"dev": "tsx src/index.ts",
"health": "tsx src/index.ts health",
"slack:test": "tsx scripts/slack-test.ts",
"smoke": "tsx scripts/smoke-test.ts",
"reporter": "tsx src/cli.ts",
"build": "tsc -p tsconfig.json",
"dry-run": "tsx scripts/dry-run.ts",
"start": "node dist/src/index.js",
"viewer:dev": "pnpm --filter viewer dev"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.621.0",
"@google/generative-ai": "^0.15.0",
"@octokit/rest": "^21.0.0",
"commander": "^12.1.0",
"dedent": "^1.5.1",
"dotenv": "^16.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.17.0",
"typescript": "^5.6.2"
}
}