@idlepaydev/plugin-tui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +32 -0
- package/tui.js +4564 -0
package/package.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@idlepaydev/plugin-tui",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Idlepay TUI status line for opencode — the sponsored line + live earnings, loaded via tui.json. Pairs with @idlepaydev/plugin.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"files": [
|
|
8
|
+
"tui.js"
|
|
9
|
+
],
|
|
10
|
+
"main": "./tui.js",
|
|
11
|
+
"exports": {
|
|
12
|
+
".": "./tui.js"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/Theoya/idlepay.git",
|
|
17
|
+
"directory": "packages/plugin-tui"
|
|
18
|
+
},
|
|
19
|
+
"homepage": "https://idlepay.dev",
|
|
20
|
+
"keywords": ["opencode", "plugin", "tui", "ads", "rewards", "local-ai"],
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "node build.mjs"
|
|
23
|
+
},
|
|
24
|
+
"publishConfig": {
|
|
25
|
+
"access": "public"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@opentui/core": "0.4.1",
|
|
29
|
+
"@opentui/solid": "0.4.1",
|
|
30
|
+
"solid-js": "^1.9.12"
|
|
31
|
+
}
|
|
32
|
+
}
|