-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.53 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "campy",
"version": "0.1.0",
"description": "Animated terminal pets for CLI coding agents (Claude Code, OpenCode, Pi, Gemini CLI, Codex CLI, Cursor CLI)",
"main": ".opencode/plugins/pets.tsx",
"bin": {
"campy": "cli/campy.ts"
},
"files": [
"core",
"cli",
"adapters",
".claude-plugin",
"assets/ascii-frames",
"README.md"
],
"exports": {
".": "./cli/campy.ts",
"./core": "./core/index.ts",
"./pi": "./adapters/pi/index.ts",
"./mcp": "./adapters/mcp/server.ts"
},
"scripts": {
"campy": "bun cli/campy.ts",
"dev": "opencode --dev",
"test": "bun test",
"typecheck": "tsc --noEmit -p tsconfig.json",
"generate:ascii": "node scripts/gif-to-ascii.js",
"extract:frames": "node scripts/extract-frames-to-json.js"
},
"keywords": [
"campy",
"cli",
"claude-code",
"opencode",
"pi",
"gemini",
"codex",
"cursor",
"aider",
"mcp",
"pets",
"terminal",
"tui",
"ascii-art"
],
"author": "dropdevrahul",
"license": "MIT",
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/solid": "*",
"solid-js": "*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"gifuct-js": "^2.1.2",
"omggif": "^1.0.10",
"sharp": "^0.34.5",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/dropdevrahul/campy"
},
"bugs": {
"url": "https://github.com/dropdevrahul/campy/issues"
},
"homepage": "https://github.com/dropdevrahul/campy#readme"
}