source: Klonkt/package.json@ 83088b66

main
Last change on this file since 83088b66 was 5a4c0b0, checked in by Robin Genis <roboburr@…>, 3 months ago

chore: AGPL-3.0 license + clean up repo metadata

  • LICENSE: full GNU AGPL-3.0 (canonical from gnu.org)
  • package.json: license=AGPL-3.0-or-later + remove stale DM/realtime description
  • README: license section finalized as AGPL-3.0

Co-Authored-By: Claude <noreply@…>

  • Property mode set to 100644
File size: 1.1 KB
Line 
1{
2 "name": "klonkt",
3 "version": "1.0.0-beta.3",
4 "description": "Klonkt — self-hosted multi-site music & blog platform (solo, hub or circles). Node + SQLite + htmx.",
5 "license": "AGPL-3.0-or-later",
6 "type": "module",
7 "main": "src/server.js",
8 "scripts": {
9 "start": "node src/server.js",
10 "dev": "node --watch src/server.js",
11 "test": "node --test",
12 "migrate": "node src/db/migrate.js",
13 "reset-admin": "node scripts/reset-admin.mjs",
14 "backfill:durations": "node scripts/backfill-durations.mjs"
15 },
16 "dependencies": {
17 "bcryptjs": "^2.4.3",
18 "better-sqlite3": "^11.3.0",
19 "body-parser": "^1.20.2",
20 "dotenv": "^16.3.1",
21 "ejs": "^3.1.9",
22 "express": "^4.18.2",
23 "express-rate-limit": "^7.4.1",
24 "express-session": "^1.17.3",
25 "ffmpeg-static": "^5.2.0",
26 "fluent-ffmpeg": "^2.1.3",
27 "helmet": "^7.1.0",
28 "htmx.org": "1.9.12",
29 "marked": "^11.1.1",
30 "multer": "^1.4.5-lts.1",
31 "nodemailer": "^6.9.15",
32 "sanitize-html": "^2.17.3",
33 "uuid": "^9.0.1",
34 "ws": "^8.18.0"
35 },
36 "engines": {
37 "node": ">=20"
38 }
39}
Note: See TracBrowser for help on using the repository browser.