feat: new tui based on ink

This commit is contained in:
Brooklyn Nicholson 2026-04-02 19:06:42 -05:00
parent 624ad582a5
commit 2ea5345a7b
13 changed files with 4177 additions and 0 deletions

23
ui-tui/package.json Normal file
View file

@ -0,0 +1,23 @@
{
"name": "hermes-tui",
"version": "0.0.1",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx --watch src/main.tsx",
"start": "tsx src/main.tsx",
"build": "tsc",
"test": "echo 'no tests yet'"
},
"dependencies": {
"ink": "^6.8.0",
"ink-text-input": "^6.0.0",
"react": "^19.2.4"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
}
}