Files
taskbuffer/package.json

72 lines
2.0 KiB
JSON
Raw Normal View History

2016-02-12 04:49:31 +01:00
{
2023-07-26 14:16:33 +02:00
"name": "@push.rocks/taskbuffer",
2025-08-26 20:15:46 +00:00
"version": "3.1.8",
"private": false,
2024-04-14 18:38:20 +02:00
"description": "A flexible task management library supporting TypeScript, allowing for task buffering, scheduling, and execution with dependency management.",
2020-07-12 00:48:51 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-25 12:14:49 +01:00
"type": "module",
2016-02-12 04:49:31 +01:00
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 120)",
2023-07-26 14:16:33 +02:00
"build": "(tsbuild --web && tsbundle npm)",
"buildDocs": "tsdoc"
2016-02-12 04:49:31 +01:00
},
"repository": {
"type": "git",
2024-05-29 14:17:28 +02:00
"url": "https://code.foss.global/push.rocks/taskbuffer.git"
2016-02-12 04:49:31 +01:00
},
"keywords": [
2024-04-14 18:38:20 +02:00
"task management",
2017-01-20 18:54:23 +01:00
"TypeScript",
2024-04-14 18:38:20 +02:00
"task buffering",
"task scheduling",
"task execution",
"task dependencies",
"parallel tasks",
"task chains",
"debounced tasks",
"distributed coordination"
2016-02-12 04:49:31 +01:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://code.foss.global/push.rocks/taskbuffer/issues"
2016-02-12 04:49:31 +01:00
},
"homepage": "https://code.foss.global/push.rocks/taskbuffer#readme",
2016-02-12 04:49:31 +01:00
"dependencies": {
2023-08-15 11:39:31 +02:00
"@push.rocks/lik": "^6.0.5",
2023-07-26 14:16:33 +02:00
"@push.rocks/smartdelay": "^3.0.5",
2023-08-02 00:07:21 +02:00
"@push.rocks/smartlog": "^3.0.3",
2023-07-26 14:16:33 +02:00
"@push.rocks/smartpromise": "^4.0.3",
2023-08-02 00:07:21 +02:00
"@push.rocks/smartrx": "^3.0.6",
2023-10-20 13:05:39 +02:00
"@push.rocks/smarttime": "^4.0.6",
2023-08-15 11:39:31 +02:00
"@push.rocks/smartunique": "^3.0.6"
2016-02-12 04:49:31 +01:00
},
"devDependencies": {
2023-10-20 13:05:39 +02:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsbundle": "^2.0.8",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^2.3.5",
2023-10-20 13:05:39 +02:00
"@types/node": "^20.8.7"
2019-09-06 16:32:36 +02:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-07-12 00:48:51 +00:00
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-09-06 16:32:36 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2020-07-12 00:48:51 +00:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"pnpm": {
"overrides": {}
}
}