Build customizable SSH portfolio MVP

This commit is contained in:
2026-07-27 09:25:18 +09:00
commit b0eb054f88
10 changed files with 277 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{
"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" },
"engines": { "node": ">=20" },
"dependencies": { "ssh2": "^1.16.0" }
}