-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 902 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 902 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-starter",
"version": "0.3.0",
"description": "A colorful terminal UI for managing OpenCode sessions — start new, resume past conversations, and toggle permission modes",
"main": "index.js",
"bin": {
"opencode-starter": "./index.js"
},
"scripts": {
"start": "node index.js",
"test": "node --test test.js",
"prepublishOnly": "npm test"
},
"keywords": [
"opencode",
"tui",
"terminal",
"session",
"resume",
"ai",
"agent",
"coding-agent"
],
"author": "Bojun Chai <just_cbj@sina.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Bojun-Vvibe/opencode-starter.git"
},
"engines": {
"node": ">=18"
},
"files": [
"index.js",
"README.md"
],
"dependencies": {
"better-sqlite3": "^11.3.0",
"blessed": "^0.1.81",
"string-width": "^4.2.3"
}
}