-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.33 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
{
"name": "buddy-codex",
"version": "1.0.6",
"description": "Standalone Codex-powered CLI buddy inspired by Claude Code's public buddy module.",
"author": "Fishason",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/Fishason/codex-buddy.git"
},
"homepage": "https://github.com/Fishason/codex-buddy#readme",
"bugs": {
"url": "https://github.com/Fishason/codex-buddy/issues"
},
"bin": {
"buddy-codex": "dist/cli.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && node scripts/postbuild.mjs",
"dev": "tsx src/cli.tsx",
"start": "printf '\\033c' && node dist/cli.js",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"engines": {
"node": ">=22.0.0"
},
"keywords": [
"codex",
"buddy",
"mcp",
"ink",
"cli",
"terminal-pet",
"codex-desktop"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"figures": "^6.1.0",
"ink": "^5.2.1",
"react": "^18.3.1",
"string-width": "^7.2.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^22.15.3",
"@types/react": "^18.3.18",
"tsup": "^8.5.0",
"tsx": "^4.20.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
}
}