-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1011 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1011 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
43
44
45
{
"name": "buddy-reroll",
"version": "0.3.8",
"description": "Reroll your Claude Code buddy companion to any species/rarity/eye/hat/shiny combo",
"type": "module",
"bin": {
"buddy-reroll": "index.js"
},
"scripts": {
"test": "bun test lib/",
"help": "bun run index.js --help",
"list": "bun run index.js --list",
"verify:runtime": "bun run scripts/verify-runtime.js",
"verify": "bun run test && bun run help && bun run list && bun run verify:runtime && npm pack --dry-run"
},
"files": [
"index.js",
"lib",
"scripts",
"ui.jsx",
"ui-fallback.js",
"sprites.js"
],
"engines": {
"node": ">=20.0.0"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/grayashh/buddy-reroll"
},
"keywords": [
"claude",
"claude-code",
"buddy",
"companion",
"reroll"
],
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"chalk": "^5.6.2",
"ink": "^6.8.0",
"react": "^19.2.4"
}
}