-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finalized package description & license
- Loading branch information
1 parent
dc8f786
commit a4b8b0d
Showing
3 changed files
with
50 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2024 Tim Fabian | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
{ | ||
"name": "lbx-multithreading", | ||
"version": "0.0.1", | ||
"description": "Open Source", | ||
"version": "1.0.0", | ||
"description": "This packages aims to take care of most of your multi threading concerns, including: -a reusable worker pool that is automatically sized based on the available threads (can be [configured](#optional-configuration)) - support for typescript out of the box - a way to run worker files, being really close to the original implementation - a simple way to run a function in a separate thread - storing data about your thread jobs like status, error etc. inside the database - utility functions to easily update the progress, status, error or result of the job - configurable timeouts for jobs and self healing capabilities of the worker pool", | ||
"keywords": [ | ||
"loopback-extension", | ||
"loopback" | ||
"loopback-4", | ||
"loopback", | ||
"multithreading", | ||
"thread", | ||
"worker", | ||
"worker-pool" | ||
], | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
|
@@ -27,23 +31,26 @@ | |
"url": "" | ||
}, | ||
"author": "tim-fabian <[email protected]>", | ||
"license": "", | ||
"license": "MIT", | ||
"files": [ | ||
"README.md", | ||
"LICENSE.md", | ||
"dist", | ||
"src", | ||
"!*/__tests__" | ||
], | ||
"peerDependencies": { | ||
"@loopback/core": "^6.0.2", | ||
"ts-node": "" | ||
"rxjs": "", | ||
"ts-node": "", | ||
"uuid": "^10" | ||
}, | ||
"dependencies": { | ||
"rxjs": "^7.8.1", | ||
"tslib": "^2.6.3", | ||
"uuid": "^10.0.0" | ||
"tslib": "^2.6.3" | ||
}, | ||
"devDependencies": { | ||
"rxjs": "^7.8.1", | ||
"uuid": "^10.0.0", | ||
"@loopback/build": "^11.0.3", | ||
"@loopback/core": "^6.1.0", | ||
"@loopback/repository": "^7.0.3", | ||
|
@@ -54,4 +61,4 @@ | |
"source-map-support": "^0.5.21", | ||
"typescript": "~5.4.5" | ||
} | ||
} | ||
} |