-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) 路 855 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) 路 855 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
{
"name": "commitachi",
"version": "1.0.0",
"description": "Your terminal pet that feeds on git commits. Keep coding or it starves.",
"type": "module",
"bin": {
"commitachi": "bin/cli.js"
},
"scripts": {
"start": "node bin/cli.js",
"feed": "node bin/cli.js feed",
"status": "node bin/cli.js status",
"web": "node bin/cli.js web",
"build:dashboard": "cd dashboard && npm run build && xcopy /E /I /Y dist ..\\public"
},
"files": [
"bin/",
"src/",
"public/"
],
"keywords": [
"cli",
"terminal",
"pet",
"tamagotchi",
"git",
"gamification",
"developer-tools"
],
"author": "senotron",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"open": "^10.1.2",
"picocolors": "^1.1.1"
}
}