2016-08-16 08:37:51 +02:00
{
2023-07-12 11:27:46 +02:00
"name" : "@push.rocks/smartstream" ,
2026-03-02 06:55:11 +00:00
"version" : "3.4.0" ,
2019-02-19 01:10:56 +01:00
"private" : false ,
2024-05-17 18:13:51 +02:00
"description" : "A library to simplify the creation and manipulation of Node.js streams, providing utilities for handling transform, duplex, and readable/writable streams effectively in TypeScript." ,
2022-03-31 01:20:01 +02:00
"type" : "module" ,
2024-06-02 16:42:42 +02:00
"exports" : {
"." : "./dist_ts/index.js" ,
"./web" : "./dist_ts_web/index.js"
} ,
2016-08-16 08:37:51 +02:00
"scripts" : {
2026-03-02 06:55:11 +00:00
"test" : "(tstest test/ --verbose --logfile --timeout 60)" ,
2026-02-28 08:48:58 +00:00
"build" : "(tsbuild tsfolders --allowimplicitany)"
2016-08-16 08:37:51 +02:00
} ,
"repository" : {
"type" : "git" ,
2024-05-29 14:16:38 +02:00
"url" : "https://code.foss.global/push.rocks/smartstream.git"
2016-08-16 08:37:51 +02:00
} ,
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"bugs" : {
2023-11-03 21:33:10 +01:00
"url" : "https://gitlab.com/push.rocks/smartstream/issues"
2016-08-16 08:37:51 +02:00
} ,
2024-05-29 14:16:38 +02:00
"homepage" : "https://code.foss.global/push.rocks/smartstream" ,
2016-09-25 14:00:16 +02:00
"devDependencies" : {
2026-02-28 08:48:58 +00:00
"@git.zone/tsbuild" : "^4.1.2" ,
"@git.zone/tsrun" : "^2.0.1" ,
"@git.zone/tstest" : "^3.1.8" ,
"@push.rocks/tapbundle" : "^6.0.3" ,
2026-03-02 06:55:11 +00:00
"@types/node" : "^25.3.3"
2016-09-25 14:00:16 +02:00
} ,
"dependencies" : {
2026-03-02 06:55:11 +00:00
"@push.rocks/lik" : "^6.3.1" ,
2026-02-28 08:48:58 +00:00
"@push.rocks/smartenv" : "^6.0.0" ,
"@push.rocks/smartpromise" : "^4.2.3" ,
"@push.rocks/smartrx" : "^3.0.10"
2022-03-31 01:20:01 +02:00
} ,
"browserslist" : [
"last 1 chrome versions"
] ,
"files" : [
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
"dist_*/**/*" ,
"dist_ts/**/*" ,
"dist_ts_web/**/*" ,
"assets/**/*" ,
"cli.js" ,
"npmextra.json" ,
"readme.md"
2024-04-14 18:25:32 +02:00
] ,
2026-02-28 08:48:58 +00:00
"pnpm" : {
"overrides" : {
"agentkeepalive" : "^4.6.0"
}
} ,
2024-04-14 18:25:32 +02:00
"keywords" : [
2024-05-17 18:13:51 +02:00
"stream" ,
2024-04-14 18:25:32 +02:00
"node.js" ,
2024-05-17 18:13:51 +02:00
"typescript" ,
2024-04-14 18:25:32 +02:00
"stream manipulation" ,
"data processing" ,
2024-05-17 18:13:51 +02:00
"pipeline" ,
2024-04-14 18:25:32 +02:00
"async transformation" ,
"event handling" ,
2024-05-17 18:13:51 +02:00
"backpressure" ,
"readable stream" ,
"writable stream" ,
"duplex stream" ,
"transform stream" ,
2024-04-14 18:25:32 +02:00
"file streaming" ,
2024-05-17 18:13:51 +02:00
"buffer" ,
2024-04-14 18:25:32 +02:00
"stream utilities" ,
2024-05-17 18:13:51 +02:00
"esm"
2022-03-31 01:20:01 +02:00
]
2024-06-02 16:42:42 +02:00
}