-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 1.91 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://json.schemastore.org/package.json",
"name": "plugin-gentleman",
"version": "1.3.3",
"description": "OpenCode TUI plugin featuring Mustachi - an animated ASCII mascot with eyes, mustache, and optional motivational phrases during busy states",
"type": "module",
"bin": {
"plugin-gentleman": "bin/plugin-gentleman.js"
},
"exports": {
"./tui": {
"import": "./tui.tsx",
"config": {
"enabled": true,
"theme": "gentleman",
"set_theme": false,
"show_detected": true,
"show_os": true,
"show_providers": true,
"show_metrics": true,
"show_face": true,
"animations": true,
"personality_enabled": true,
"personality_mode": "auto",
"personality_model": "",
"cost_budget_usd": 1
}
}
},
"files": [
"bin/",
"tui.tsx",
"runtime/",
"ui/",
"utils/",
"config.ts",
"detection.ts",
"ascii-frames.ts",
"phrases.ts",
"types.ts",
"message-utils.ts",
"mcp-utils.ts",
"animation-utils.ts",
"progress-components.tsx",
"gentleman.json"
],
"engines": {
"opencode": ">=1.3.13"
},
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": "*",
"@opentui/solid": "*",
"solid-js": "*"
},
"keywords": [
"opencode",
"plugin",
"theme",
"gentleman",
"tui",
"ascii",
"mustachi"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/IrrealV/plugin-gentleman.git"
},
"homepage": "https://github.com/IrrealV/plugin-gentleman#readme",
"bugs": {
"url": "https://github.com/IrrealV/plugin-gentleman/issues"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.14.28",
"@opentui/core": "^0.1.105",
"@opentui/solid": "^0.1.105",
"@types/node": "^25.6.0",
"solid-js": "^1.9.12",
"typescript": "^5.9.3"
}
}