Files
Trilium/packages/express-partial-content/package.json

19 lines
495 B
JSON
Raw Normal View History

2025-05-03 01:20:47 +03:00
{
"name": "@triliumnext/express-partial-content",
"description": "A partial content handler implementation for any readable stream with Express. Based on this blog post: https://www.codeproject.com/Articles/813480/HTTP-Partial-Content-In-Node-js.",
"license": "MIT",
"version": "1.1.0",
"type": "module",
2025-05-03 01:20:47 +03:00
"private": true,
"main": "./src/index.ts",
"keywords": [
"partial-content",
"206",
"stream",
"typescript"
],
2025-05-03 01:20:47 +03:00
"dependencies": {
2025-10-01 20:52:25 +03:00
"tslib": "2.8.1"
2025-05-03 01:20:47 +03:00
}
}