init: video-share — minimal no-signup file/video share with TTL

This commit is contained in:
2026-05-04 16:09:15 +02:00
commit 4ab1f87c1a
12 changed files with 2165 additions and 0 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "video-share",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Minimalist no-signup video/file share with private UUID links and TTL",
"scripts": {
"start": "node src/server.js",
"dev": "node --watch src/server.js"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@fastify/multipart": "^8.3.0",
"@fastify/static": "^7.0.4",
"fastify": "^4.28.1"
}
}