31 lines
669 B
JSON
31 lines
669 B
JSON
{
|
|
"name": "@multmux/cli",
|
|
"version": "0.1.0",
|
|
"description": "mulTmux CLI - collaborative terminal client",
|
|
"main": "dist/index.js",
|
|
"bin": {
|
|
"multmux": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"dev": "tsx src/index.ts",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"dependencies": {
|
|
"commander": "^11.1.0",
|
|
"ws": "^8.16.0",
|
|
"blessed": "^0.1.81",
|
|
"chalk": "^4.1.2",
|
|
"ora": "^5.4.1",
|
|
"node-fetch": "^2.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ws": "^8.5.10",
|
|
"@types/node": "^20.0.0",
|
|
"@types/blessed": "^0.1.25",
|
|
"@types/node-fetch": "^2.6.9",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|