mirror of
https://github.com/anomalyco/opentui.git
synced 2026-09-19 01:26:03 +08:00
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "@opentui/ssh",
|
|
"version": "0.5.10",
|
|
"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.3.14",
|
|
"@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"
|
|
}
|
|
}
|