spb/spbgit Public MIT
SPB Git — the platform hosting itself
JavaScript 73.9%
CSS 11.7%
Nunjucks 11.6%
Shell 2.7%
1{2 "name": "spbgit",3 "version": "1.0.0",4 "description": "SPB Git — Personal Git Platform for Simon-Pierre Boucher",5 "author": "Simon-Pierre Boucher <contact@spboucher.ai>",6 "license": "MIT",7 "type": "module",8 "engines": {9 "node": ">=20"10 },11 "bin": {12 "spbgit": "cli/spbgit.mjs"13 },14 "scripts": {15 "start": "node src/server.mjs",16 "dev": "SPBGIT_ENV=development node --watch src/server.mjs",17 "lint": "eslint .",18 "test": "vitest run",19 "test:watch": "vitest",20 "check:headers": "node scripts/check-headers.mjs",21 "inject:headers": "node scripts/inject-headers.mjs",22 "fetch:fonts": "node scripts/fetch-fonts.mjs",23 "postinstall": "node scripts/fetch-fonts.mjs --best-effort"24 },25 "dependencies": {26 "@fastify/rate-limit": "^10.1.1",27 "@fastify/static": "^8.0.3",28 "@resvg/resvg-js": "^2.6.2",29 "argon2": "^0.41.1",30 "commander": "^12.1.0",31 "fastify": "^5.2.0",32 "markdown-it": "^14.1.0",33 "markdown-it-anchor": "^9.2.0",34 "markdown-it-emoji": "^3.0.0",35 "markdown-it-footnote": "^4.0.0",36 "markdown-it-task-lists": "^2.1.1",37 "mermaid": "^11.4.1",38 "nunjucks": "^3.2.4",39 "picocolors": "^1.1.1",40 "sanitize-html": "^2.13.1",41 "satori": "^0.12.0",42 "shiki": "^1.24.4",43 "zod": "^3.24.1"44 },45 "devDependencies": {46 "@eslint/js": "^9.17.0",47 "eslint": "^9.17.0",48 "vitest": "^2.1.8"49 }50}51