Portfolio/package.json

24 lines
432 B
JSON
Raw Normal View History

2025-03-12 08:17:34 +01:00
{
2025-03-18 10:48:21 +01:00
"name": "bun-ssh-portfolio",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun index.ts",
"dev": "bun --watch ."
},
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@types/qrcode-terminal": "^0.12.2",
"@types/ssh2": "^1.15.4",
"ansi-escapes": "^7.0.0",
"qrcode-terminal": "^0.12.0",
"ssh2": "^1.16.0"
}
}