smartstream/package.json

72 lines
1.8 KiB
JSON
Raw Normal View History

2016-08-16 06:37:51 +00:00
{
2023-07-12 09:27:46 +00:00
"name": "@push.rocks/smartstream",
2024-05-05 16:30:05 +00:00
"version": "3.0.35",
2019-02-19 00:10:56 +00:00
"private": false,
2024-05-17 16:13:51 +00: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-30 23:20:01 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2016-08-16 06:37:51 +00:00
"scripts": {
2019-02-19 00:10:56 +00:00
"test": "(tstest test/)",
2023-11-03 20:33:10 +00:00
"build": "(tsbuild)",
"buildDocs": "tsdoc"
2016-08-16 06:37:51 +00:00
},
"repository": {
"type": "git",
2023-11-03 20:33:10 +00:00
"url": "git+https://gitlab.com/push.rocks/smartstream.git"
2016-08-16 06:37:51 +00:00
},
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2023-11-03 20:33:10 +00:00
"url": "https://gitlab.com/push.rocks/smartstream/issues"
2016-08-16 06:37:51 +00:00
},
2023-11-03 20:33:10 +00:00
"homepage": "https://gitlab.com/push.rocks/smartstream#readme",
2016-09-25 12:00:16 +00:00
"devDependencies": {
2024-02-25 19:14:19 +00:00
"@git.zone/tsbuild": "^2.1.72",
2023-11-01 13:16:58 +00:00
"@git.zone/tsrun": "^1.2.44",
2024-03-16 17:29:44 +00:00
"@git.zone/tstest": "^1.0.88",
2024-02-25 19:14:19 +00:00
"@push.rocks/smartfile": "^11.0.4",
2024-03-16 17:29:44 +00:00
"@push.rocks/tapbundle": "^5.0.17",
"@types/node": "^20.11.28"
2016-09-25 12:00:16 +00:00
},
"dependencies": {
2024-02-25 19:14:19 +00:00
"@push.rocks/lik": "^6.0.14",
2023-07-12 09:27:46 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2024-05-05 16:30:05 +00:00
"@push.rocks/smartrx": "^3.0.7",
"@push.rocks/webstream": "^1.0.8"
2022-03-30 23:20:01 +00: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 16:25:32 +00:00
],
"keywords": [
2024-05-17 16:13:51 +00:00
"stream",
2024-04-14 16:25:32 +00:00
"node.js",
2024-05-17 16:13:51 +00:00
"typescript",
2024-04-14 16:25:32 +00:00
"stream manipulation",
"data processing",
2024-05-17 16:13:51 +00:00
"pipeline",
2024-04-14 16:25:32 +00:00
"async transformation",
"event handling",
2024-05-17 16:13:51 +00:00
"backpressure",
"readable stream",
"writable stream",
"duplex stream",
"transform stream",
2024-04-14 16:25:32 +00:00
"file streaming",
2024-05-17 16:13:51 +00:00
"buffer",
2024-04-14 16:25:32 +00:00
"stream utilities",
2024-05-17 16:13:51 +00:00
"esm"
2022-03-30 23:20:01 +00:00
]
2024-05-17 16:13:51 +00:00
}