Files
anomalyco__opentui/packages/ssh/package.json
T
OpenCode Agent 6b9863ea7c Release v0.5.11
2026-09-07 10:42:03 +00:00

51 lines
1.2 KiB
JSON

{
"name": "@opentui/ssh",
"version": "0.5.11",
"description": "Serve OpenTUI apps over SSH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/anomalyco/opentui",
"directory": "packages/ssh"
},
"module": "src/index.ts",
"main": "src/index.ts",
"types": "src/index.ts",
"type": "module",
"exports": {
".": {
"import": "./src/index.ts",
"types": "./src/index.ts"
}
},
"scripts": {
"build": "bun scripts/build.ts",
"publish": "bun scripts/publish.ts",
"test": "bun test",
"test:dist": "bun scripts/dist-test.ts",
"typecheck": "tsc --noEmit && tsc -p tsconfig.example-react.json && tsc -p tsconfig.example-solid.json"
},
"dependencies": {
"ssh2": "^1.16.0"
},
"peerDependencies": {
"@opentui/core": "workspace:*"
},
"devDependencies": {
"@opentui/core": "workspace:*",
"@opentui/react": "workspace:*",
"@opentui/solid": "workspace:*",
"@types/bun": "1.4.1",
"@types/node": "^24.0.0",
"@types/react": "^19.2.0",
"@types/ssh2": "^1.15.0",
"react": "19.2.3",
"solid-js": "1.9.12",
"typescript": "^5"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=26.4.0"
}
}