-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.1 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.1 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
{
"name": "opencode-quotes-plugin",
"description": "A motivational quotes plugin for OpenCode",
"keywords": [
"opencode",
"opencode-cli",
"opencode-ai",
"opentui",
"plugin",
"motivational",
"inspirational",
"motivation",
"inspiration",
"quotes",
"opentui",
"openai",
"codex",
"anthropic",
"claude-code",
"claude",
"gemini",
"copilot"
],
"version": "1.2.2",
"type": "module",
"exports": {
"./tui": {
"import": "./tui.tsx"
}
},
"files": [
"tui.tsx",
"quotes.ts"
],
"scripts": {
"typecheck": "tsc --noEmit"
},
"engines": {
"opencode": "^1.0.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": "*",
"@opentui/solid": "*",
"solid-js": "*"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.3.13",
"@opentui/core": "0.1.95",
"@opentui/solid": "0.1.95",
"@types/bun": "latest",
"solid-js": "^1.9.12",
"typescript": "^5.9.3"
},
"repository": {
"type": "git",
"url": "https://github.com/aerovato/opencode-quotes-plugin"
}
}