-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.82 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
{
"name": "@skwid138/opencode-tui",
"version": "1.1.0",
"description": "Configurable TUI plugin for OpenCode — custom logo and prompt placeholders",
"type": "module",
"files": [
"dist",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./dist/config.js",
"types": "./dist/config.d.ts"
},
"./tui": {
"import": "./dist/tui.js",
"types": "./dist/tui.d.ts"
}
},
"engines": {
"node": ">=22"
},
"scripts": {
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "husky || true"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.14.50 <3",
"@opentui/solid": ">=0.2.9 <1",
"solid-js": "^1.9.0"
},
"devDependencies": {
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@opencode-ai/plugin": "^1.15.0",
"@opentui/solid": "^0.2.9",
"@opentui/core": "^0.2.9",
"@opentui/keymap": "^0.2.9",
"solid-js": "^1.9.0",
"vite": "^8.0.14",
"vite-plugin-solid": "^2.0.0",
"vite-plugin-dts": "^5.0.1",
"typescript": "^6.0.3",
"vitest": "^4.1.7",
"@vitest/coverage-v8": "^4.1.7",
"husky": "^9.1.7",
"semantic-release": "^25.0.0",
"@types/node": "^22.0.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skwid138/opencode-tui.git"
},
"homepage": "https://github.com/skwid138/opencode-tui",
"bugs": {
"url": "https://github.com/skwid138/opencode-tui/issues"
},
"license": "MIT",
"keywords": [
"opencode",
"opencode-plugin",
"tui",
"plugin",
"ascii-art",
"figlet",
"logo",
"prompt",
"terminal"
]
}