-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 716 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 716 Bytes
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
{
"name": "opencode-mini-session",
"version": "1.0.0",
"type": "module",
"exports": {
"./tui": "./src/index.ts"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/karamanliev/opencode-mini-session"
},
"scripts": {
"release": "node scripts/release.mjs",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opencode-ai/plugin": "1.14.48",
"@opencode-ai/sdk": "1.14.48",
"@opentui/core": "^0.2.6",
"@opentui/keymap": "^0.2.6",
"@opentui/solid": "^0.2.6",
"solid-js": "^1.9.12"
},
"devDependencies": {
"@types/node": "^25.9.1",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
}
}