2018-07-12 19:32:20 +00:00
|
|
|
{
|
2023-07-10 00:42:23 +00:00
|
|
|
"name": "@push.rocks/smartcache",
|
2023-01-08 08:18:41 +00:00
|
|
|
"version": "1.0.16",
|
2018-07-12 19:32:20 +00:00
|
|
|
"private": false,
|
2024-04-14 15:23:41 +00:00
|
|
|
"description": "A module for caching asynchronous function results with smart time and hash-based invalidation strategies.",
|
2021-04-21 19:52:53 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2018-07-12 19:32:20 +00:00
|
|
|
"author": "Lossless GmbH",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
2018-08-19 19:19:23 +00:00
|
|
|
"test": "(tstest test/)",
|
2022-06-26 18:36:22 +00:00
|
|
|
"build": "(tsbuild)",
|
|
|
|
"buildDocs": "tsdoc"
|
2018-07-12 19:32:20 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-06-26 18:36:22 +00:00
|
|
|
"@gitzone/tsbuild": "^2.1.63",
|
|
|
|
"@gitzone/tsrun": "^1.2.37",
|
|
|
|
"@gitzone/tstest": "^1.0.71",
|
|
|
|
"@pushrocks/tapbundle": "^5.0.3",
|
2023-01-08 08:18:41 +00:00
|
|
|
"@types/node": "^18.0.0"
|
2018-07-12 19:32:20 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-06-26 18:36:22 +00:00
|
|
|
"@pushrocks/smartdelay": "^2.0.13",
|
2018-07-12 19:32:20 +00:00
|
|
|
"@pushrocks/smarterror": "^2.0.1",
|
2022-06-26 18:36:22 +00:00
|
|
|
"@pushrocks/smarthash": "^3.0.1",
|
|
|
|
"@pushrocks/smartpromise": "^3.1.7",
|
2023-01-08 08:18:41 +00:00
|
|
|
"@pushrocks/smarttime": "^4.0.1"
|
2019-10-23 17:21:27 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"ts/**/*",
|
|
|
|
"ts_web/**/*",
|
|
|
|
"dist/**/*",
|
2021-04-21 19:52:53 +00:00
|
|
|
"dist_*/**/*",
|
|
|
|
"dist_ts/**/*",
|
2019-10-23 17:21:27 +00:00
|
|
|
"dist_ts_web/**/*",
|
|
|
|
"assets/**/*",
|
|
|
|
"cli.js",
|
|
|
|
"npmextra.json",
|
|
|
|
"readme.md"
|
2021-04-21 19:52:53 +00:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"last 1 chrome versions"
|
2022-06-26 18:36:22 +00:00
|
|
|
],
|
2024-04-14 15:23:41 +00:00
|
|
|
"type": "module",
|
|
|
|
"keywords": [
|
|
|
|
"caching",
|
|
|
|
"asynchronous",
|
|
|
|
"time-based invalidation",
|
|
|
|
"hash-based identification",
|
|
|
|
"smart caching",
|
|
|
|
"node.js",
|
|
|
|
"performance optimization",
|
|
|
|
"typescript",
|
|
|
|
"delay handling",
|
|
|
|
"error management"
|
2024-05-29 12:11:59 +00:00
|
|
|
],
|
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartcache",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://code.foss.global/push.rocks/smartcache.git"
|
|
|
|
}
|
2023-07-10 00:42:23 +00:00
|
|
|
}
|