-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.08 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.08 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "oc-plugin-rainbow",
"version": "0.1.1",
"repository": {
"type": "git",
"url": "git+https://github.com/anomalyco/oc-plugin-rainbow.git"
},
"type": "module",
"exports": {
"./tui": {
"import": "./tui.tsx",
"config": {
"enabled": true,
"fg": true,
"bg": true,
"speed": 0.008,
"turns": 3,
"glow": 0.05,
"keybinds": {
"logo_splash": "ctrl+shift+r"
}
}
}
},
"scripts": {
"bench:post-process": "bun ./bench/post-process.ts",
"fmt": "oxfmt --write .",
"fmt:check": "oxfmt --check ."
},
"devDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": "0.1.97",
"@opentui/solid": "0.1.97",
"@types/bun": "latest",
"oxfmt": "0.41.0",
"solid-js": "1.9.11",
"typescript": "^5"
},
"peerDependencies": {
"@opencode-ai/plugin": "*",
"@opentui/core": ">=0.1.97",
"@opentui/solid": ">=0.1.97",
"solid-js": "^1.9.11"
},
"engines": {
"opencode": ">=1.3.14"
}
}