Files

25 lines
609 B
JSON

{
"name": "ssh-portfolio",
"version": "0.1.0",
"description": "A customizable, public SSH portfolio for your online persona",
"type": "module",
"main": "src/server.js",
"bin": {
"ssh-portfolio": "src/server.js",
"ssh-portfolio-notify": "src/notify-client.js"
},
"scripts": {
"start": "node src/server.js",
"notify": "node src/notify-client.js",
"check": "node --check src/server.js && node --check src/notify-client.js",
"test": "node --test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"ssh2": "^1.16.0"
}
}