-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 803 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 803 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
33
34
35
36
37
38
39
40
41
42
{
"name": "aistand",
"version": "0.0.5",
"description": "A CLI tool to summarize Git commits for daily stand-ups using AI.",
"contributors": [
{
"name": "Armandas B"
},
{
"name": "Justinas B"
},
{
"name": "Nerijus P"
},
{
"name": "Vytenis K",
"url": "https://github.com/FDiskas"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/FDiskas/aistand.git"
},
"main": "index.js",
"scripts": {
"start": "bun run index.js"
},
"dependencies": {
"@google/genai": "^1.29.1",
"commander": "^11.0.0",
"date-fns": "^2.30.0",
"execa": "^8.0.1"
},
"devDependencies": {
"bun-types": "latest"
},
"module": "index.js",
"type": "module",
"bin": {
"aistand": "index.js"
}
}