-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"name": "claude-code-tamagotchi",
"version": "1.3.1",
"description": "A virtual pet that lives in your Claude Code statusline",
"type": "module",
"main": "dist/index.js",
"bin": {
"claude-code-tamagotchi": "./bin/claude-code-tamagotchi.cjs"
},
"scripts": {
"start": "bun run src/index.ts",
"demo": "bun run scripts/demo.ts",
"reset": "bun run scripts/reset-pet.ts",
"build": "bun build src/index.ts --outdir=dist --target=node && bun build src/commands/cli.ts --outdir=dist/commands --target=node",
"dev": "bun run --watch src/index.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"claude-code",
"tamagotchi",
"pet",
"statusline",
"virtual-pet"
],
"author": "Ido Levi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Ido-Levi/claude-code-tamagotchi.git"
},
"files": [
"bin/",
"src/",
"dist/",
"README.md",
"LICENSE"
],
"dependencies": {
"dotenv": "^16.3.1",
"groq-sdk": "^0.30.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.0"
}
}