-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 796 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 796 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
{
"name": "@txchen/tersh",
"version": "0.1.3",
"description": "Local terminal CLI for connecting to Termix-managed SSH hosts.",
"type": "module",
"bin": {
"tersh": "bin/tersh.js"
},
"files": [
"bin/",
"src/",
"README.md"
],
"engines": {
"node": ">=24"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"check": "node --check bin/tersh.js && node --check src/auth-client.js && node --check src/command-runner.js && node --check src/config-store.js && node --check src/host-discovery.js && node --check src/http-json.js && node --check src/prompts.js && node --check src/tls-policy.js && node --check src/token-storage.js && node --check src/tty-bridge.js",
"test": "node --test"
},
"dependencies": {},
"devDependencies": {}
}