-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.44 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
{
"name": "opencode-session-switch",
"version": "1.0.0",
"description": "OpenCode TUI plugin that adds a session switch panel to the sidebar.",
"type": "module",
"main": "./index.ts",
"module": "./index.ts",
"exports": {
".": {
"import": "./index.ts"
},
"./server": {
"import": "./src/server.ts"
},
"./tui": {
"import": "./dist/tui.js"
}
},
"files": [
"index.ts",
"tui.tsx",
"dist",
"src",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Dylan-Liew/opencode-session-switch.git"
},
"homepage": "https://github.com/Dylan-Liew/opencode-session-switch#readme",
"bugs": {
"url": "https://github.com/Dylan-Liew/opencode-session-switch/issues"
},
"keywords": [
"opencode",
"plugin",
"tui",
"sidebar",
"sessions"
],
"author": "Dylan Liew",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "bun ./scripts/build.ts",
"test": "tsc -p tsconfig.json --noEmit"
},
"devDependencies": {
"@opentui/core": "0.5.10",
"@opentui/solid": "0.5.10",
"@types/bun": "latest",
"@types/node": "^24.3.0",
"solid-js": "1.9.12",
"typescript": "^5.9.3",
"@opencode/theme": "2.0.14"
},
"dependencies": {
"@opencode/plugin": "2.0.14"
},
"peerDependencies": {
"@opentui/core": ">=0.5.10",
"@opentui/solid": ">=0.5.10",
"solid-js": ">=1.9.0"
}
}