| [f3663e5] | 1 | # Third-Party Notices
|
|---|
| 2 |
|
|---|
| 3 | Klonkt is licensed under **AGPL-3.0-or-later** (see [LICENSE](LICENSE)). It is built on the
|
|---|
| 4 | open-source software listed below, with gratitude. Each dependency's own licence text is retained in
|
|---|
| 5 | `node_modules/<package>/` after `npm install`; this file is a summary and acknowledgement.
|
|---|
| 6 |
|
|---|
| 7 | ## Runtime dependencies (npm)
|
|---|
| 8 |
|
|---|
| 9 | | Package(s) | Licence |
|
|---|
| 10 | |---|---|
|
|---|
| 11 | | express · express-session · body-parser · multer · express-rate-limit · helmet · bcryptjs · better-sqlite3 · marked · sanitize-html · uuid · fluent-ffmpeg | MIT |
|
|---|
| 12 | | nodemailer | MIT-0 |
|
|---|
| 13 | | dotenv | BSD-2-Clause |
|
|---|
| 14 | | htmx.org | 0BSD |
|
|---|
| 15 | | ejs | Apache-2.0 |
|
|---|
| 16 | | @resvg/resvg-js | MPL-2.0 |
|
|---|
| 17 | | node-webpmux | LGPL-3.0-or-later |
|
|---|
| 18 | | ffmpeg-static | GPL-3.0-or-later |
|
|---|
| 19 |
|
|---|
| [88838bc] | 20 | ## Vendored browser libraries
|
|---|
| 21 |
|
|---|
| 22 | Checked into `src/assets/` rather than pulled from a CDN: the Content-Security-Policy allows
|
|---|
| 23 | scripts from `'self'` only, so anything the browser runs has to ship with Klonkt. Each file keeps
|
|---|
| 24 | the licence header its author put there; Lenis ships its licence as a separate file because its
|
|---|
| 25 | build has no header.
|
|---|
| 26 |
|
|---|
| 27 | | Library | Version | Licence | Where |
|
|---|
| 28 | |---|---|---|---|
|
|---|
| 29 | | [Lenis](https://github.com/darkroomengineering/lenis) + `lenis/snap` | 1.3.26 | MIT (© darkroom.engineering) — text in `src/assets/vendor/lenis-LICENSE.txt` | `src/assets/vendor/lenis*.mjs` |
|
|---|
| 30 | | [Cropper.js](https://github.com/fengyuanchen/cropperjs) | 1.6.2 | MIT (© Chen Fengyuan) — header in the file | `src/assets/vendor/cropper.min.*` |
|
|---|
| 31 | | [@simplewebauthn/browser](https://github.com/MasterKale/SimpleWebAuthn) | 13.3.0 | MIT | `src/assets/vendor/simplewebauthn-browser.umd.min.js` |
|
|---|
| 32 | | [htmx](https://htmx.org) | — | 0BSD (also listed under npm above) | `src/assets/js/htmx.min.js` |
|
|---|
| 33 |
|
|---|
| [f3663e5] | 34 | ## Bundled binaries & native libraries
|
|---|
| 35 |
|
|---|
| 36 | These packages ship pre-built native components, redistributed under their own licences:
|
|---|
| 37 |
|
|---|
| 38 | - **FFmpeg** — bundled via [`ffmpeg-static`](https://github.com/eugeneware/ffmpeg-static), licensed
|
|---|
| 39 | **GPL-3.0-or-later**. Source: <https://ffmpeg.org/>. Used to transcode audio and build the
|
|---|
| 40 | looping video covers.
|
|---|
| 41 | - **libwebp** — bundled via [`node-webpmux`](https://github.com/ApeironTsuka/node-webpmux)
|
|---|
| 42 | (LGPL-3.0-or-later); libwebp itself is BSD-3-Clause (© Google Inc.). Used to decode animated WebP
|
|---|
| 43 | covers.
|
|---|
| 44 | - **resvg** — bundled via [`@resvg/resvg-js`](https://github.com/yisibl/resvg-js) (MPL-2.0). Used to
|
|---|
| 45 | render the Open Graph preview cards.
|
|---|
| 46 | - **SQLite** — bundled via [`better-sqlite3`](https://github.com/WiseLibs/better-sqlite3) (MIT);
|
|---|
| 47 | SQLite itself is public domain. The database engine.
|
|---|
| 48 |
|
|---|
| 49 | ## Fonts
|
|---|
| 50 |
|
|---|
| 51 | Bundled in `src/assets/fonts/`, all under the **SIL Open Font License 1.1** (full text in
|
|---|
| 52 | `src/assets/fonts/OFL.txt`):
|
|---|
| 53 |
|
|---|
| 54 | - **Fraunces** — © The Fraunces Project Authors (<https://github.com/undercasetype/Fraunces>).
|
|---|
| 55 | - **Plus Jakarta Sans** — © The Plus Jakarta Sans Project Authors
|
|---|
| 56 | (<https://github.com/tokotype/PlusJakartaSans>).
|
|---|
| 57 | - **Literata** — © The Literata Project Authors.
|
|---|
| 58 |
|
|---|
| 59 | ---
|
|---|
| 60 |
|
|---|
| 61 | If you redistribute Klonkt, please keep this file and the bundled licence texts intact.
|
|---|