-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1012 Bytes
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1012 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
34
35
36
37
38
39
40
41
42
{
"name": "opencode-mini-session",
"version": "1.1.3",
"type": "module",
"engines": {
"opencode": ">=1.17.18 <2"
},
"exports": {
"./tui": "./dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/karamanliev/opencode-mini-session"
},
"scripts": {
"build": "node scripts/build.mjs",
"prepack": "npm run build",
"release": "node scripts/release.mjs",
"test": "vitest run",
"test:package": "node scripts/verify-packaged-tui.mjs",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@opentui/core": "^0.4.3",
"@opentui/solid": "^0.4.3",
"solid-js": "^1.9.12"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@opencode-ai/plugin": "^1.17.18",
"@opencode-ai/sdk": "^1.17.18",
"@opentui/keymap": "^0.4.3",
"@types/node": "^25.9.1",
"babel-preset-solid": "^1.9.12",
"typescript": "^5.9.3",
"vitest": "^4.1.7"
}
}