You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

44 lines
1000 B
JSON

{
"name": "cmux-remote",
"version": "0.1.0",
"description": "Browser-based remote terminal control for cmux",
"type": "module",
"bin": {
"cmux-remote": "./bin/cmux-remote.js"
},
"files": [
"bin",
"dist",
"public"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"dev": "tsx src/index.ts",
"dev:local": "tsx src/index.ts --public-url \"\"",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@ngrok/ngrok": "^1.7.0",
"bcrypt": "^5.1.0",
"commander": "^13.0.0",
"express": "^5.0.0",
"jsonwebtoken": "^9.0.0",
"nanoid": "^5.0.0",
"qrcode-terminal": "^0.12.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.0",
"@types/node": "^22.0.0",
"@types/ws": "^8.5.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}