mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-07-14 14:12:44 +00:00
Pins Node 26.3 to ui-opentui/ only (fnm/mise auto-switch on cd; leaving the directory restores whatever the dev had — no global default change). engines.node >= 26.3 makes a wrong-Node npm ci warn. README covers install paths (fnm/mise/nvm/absolute-binary), the ABI-locked node_modules gotcha, and build/run commands.
45 lines
1.3 KiB
JSON
45 lines
1.3 KiB
JSON
{
|
|
"name": "@hermes/ui-opentui",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"engines": {
|
|
"node": ">=26.3"
|
|
},
|
|
"description": "Native OpenTUI engine for Hermes (Solid + Effect-at-boundary, from scratch). Ink (ui-tui/) stays the shipping default.",
|
|
"scripts": {
|
|
"type-check": "tsc --noEmit",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"fmt": "prettier --write src",
|
|
"fix": "prettier --write src && eslint . --fix",
|
|
"build": "node scripts/build.mjs",
|
|
"start": "node --experimental-ffi --no-warnings dist/main.js",
|
|
"test": "vitest run",
|
|
"check": "bash scripts/check.sh",
|
|
"dev": "node scripts/build.mjs && node --experimental-ffi --no-warnings dist/main.js"
|
|
},
|
|
"dependencies": {
|
|
"@opentui/core": "0.4.0",
|
|
"@opentui/keymap": "0.4.0",
|
|
"@opentui/solid": "0.4.0",
|
|
"effect": "4.0.0-beta.78",
|
|
"fuzzysort": "^3.1.0",
|
|
"solid-js": "1.9.12"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.29.7",
|
|
"@babel/preset-typescript": "^7.29.7",
|
|
"@effect/vitest": "^4.0.0-beta.78",
|
|
"@eslint/js": "^9",
|
|
"@types/node": "^24",
|
|
"babel-preset-solid": "^1.9.12",
|
|
"esbuild": "^0.28.0",
|
|
"eslint": "^9",
|
|
"eslint-plugin-unused-imports": "^4",
|
|
"prettier": "^3",
|
|
"typescript": "^5",
|
|
"typescript-eslint": "^8",
|
|
"vitest": "^4.1.8"
|
|
}
|
|
}
|