-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 907 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 907 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": "cli-pet",
"version": "1.0.0",
"description": "🐾 A GitHub-powered virtual pet that lives in your terminal. Feed it commits, keep it healthy with green builds!",
"main": "dist/index.js",
"bin": {
"cli-pet": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts"
},
"keywords": [
"cli",
"pet",
"github",
"copilot",
"terminal",
"tamagotchi",
"virtual-pet",
"developer-tools"
],
"author": "",
"type": "module",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^21.0.0",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"conf": "^13.0.1",
"figlet": "^1.8.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/node": "^22.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.0"
}
}