UNPKG

claude-code-tamagotchi

Version:

A virtual pet that lives in your Claude Code statusline

47 lines (46 loc) 1.13 kB
{ "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" } }