2025-05-03 01:20:47 +03:00
{
"name" : "@triliumnext/express-partial-content" ,
2025-05-03 02:06:43 +03:00
"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" ,
2025-05-03 01:21:46 +03:00
"type" : "module" ,
2025-05-03 01:20:47 +03:00
"private" : true ,
2025-05-21 17:31:40 +03:00
"main" : "./dist/main.js" ,
"module" : "./dist/main.js" ,
2025-05-03 01:20:47 +03:00
"types" : "./dist/index.d.ts" ,
"exports" : {
"./package.json" : "./package.json" ,
"." : {
"development" : "./src/index.ts" ,
"types" : "./dist/index.d.ts" ,
2025-05-21 17:31:40 +03:00
"import" : "./dist/main.js" ,
"default" : "./dist/main.js"
2025-05-03 01:20:47 +03:00
}
} ,
2025-05-03 02:06:43 +03:00
"keywords" : [
"partial-content" ,
"206" ,
"stream" ,
"typescript"
] ,
2025-05-03 01:20:47 +03:00
"nx" : {
"name" : "express-partial-content" ,
"targets" : {
"build" : {
2025-05-21 17:31:40 +03:00
"executor" : "@nx/esbuild:esbuild" ,
2025-05-03 01:20:47 +03:00
"outputs" : [
"{options.outputPath}"
] ,
2025-05-21 17:31:40 +03:00
"defaultConfiguration" : "production" ,
2025-05-03 01:20:47 +03:00
"options" : {
2025-05-21 17:31:40 +03:00
"main" : "packages/express-partial-content/src/index.ts" ,
2025-05-03 01:20:47 +03:00
"outputPath" : "packages/express-partial-content/dist" ,
2025-05-21 17:31:40 +03:00
"outputFileName" : "main.js" ,
2025-05-03 01:20:47 +03:00
"tsConfig" : "packages/express-partial-content/tsconfig.lib.json" ,
2025-05-21 17:31:40 +03:00
"platform" : "node" ,
"format" : [
"esm"
] ,
"declarationRootDir" : "packages/express-partial-content/src"
} ,
"configurations" : {
"development" : {
"minify" : false
} ,
"production" : {
"minify" : true
}
2025-05-03 01:20:47 +03:00
}
}
}
} ,
"dependencies" : {
"tslib" : "^2.3.0"
}
}