2020-02-05 17:11:30 +00:00
{
2023-07-10 00:41:30 +00:00
"name" : "@push.rocks/levelcache" ,
2024-11-24 19:16:25 +00:00
"version" : "3.1.0" ,
2020-02-05 17:11:30 +00:00
"private" : false ,
2024-11-24 19:16:25 +00:00
"description" : "A versatile caching solution offering multi-level storage utilizing memory, disk, and Amazon S3 for efficient data management and backup." ,
2021-04-23 18:40:57 +00:00
"main" : "dist_ts/index.js" ,
"typings" : "dist_ts/index.d.ts" ,
2022-03-22 21:45:12 +00:00
"type" : "module" ,
2020-02-05 17:11:30 +00:00
"author" : "Lossless GmbH" ,
"license" : "MIT" ,
"scripts" : {
2021-04-23 18:40:57 +00:00
"test" : "(tstest test/ --web)" ,
2023-07-20 22:44:39 +00:00
"build" : "(tsbuild --web --allowimplicitany)" ,
2024-02-14 00:32:19 +00:00
"buildDocs" : "tsdoc" ,
"localPublish" : "gitzone commit && pnpm run build && pnpm publish && pnpm publish --access public --registry=\"https://registry.npmjs.org\""
2020-02-05 17:11:30 +00:00
} ,
"devDependencies" : {
2023-07-20 20:54:07 +00:00
"@gitzone/tsbuild" : "^2.1.66" ,
"@gitzone/tsrun" : "^1.2.44" ,
"@gitzone/tstest" : "^1.0.77" ,
2024-11-24 19:16:25 +00:00
"@push.rocks/tapbundle" : "^5.5.3" ,
"@types/node" : "^22.9.3"
2020-02-05 17:11:30 +00:00
} ,
"dependencies" : {
2024-11-24 19:16:25 +00:00
"@push.rocks/lik" : "^6.1.0" ,
"@push.rocks/smartbucket" : "^3.3.3" ,
2023-07-20 20:54:07 +00:00
"@push.rocks/smartcache" : "^1.0.13" ,
2024-02-14 00:32:19 +00:00
"@push.rocks/smartenv" : "^5.0.12" ,
2024-11-24 19:16:25 +00:00
"@push.rocks/smartexit" : "^1.0.23" ,
"@push.rocks/smartfile" : "^11.0.21" ,
"@push.rocks/smartjson" : "^5.0.20" ,
"@push.rocks/smartpath" : "^5.0.18" ,
"@push.rocks/smartpromise" : "^4.0.4" ,
"@push.rocks/smartstring" : "^4.0.15" ,
"@push.rocks/smartunique" : "^3.0.9" ,
2024-02-14 00:32:19 +00:00
"@push.rocks/taskbuffer" : "^3.1.7" ,
2024-11-24 19:16:25 +00:00
"@tsclass/tsclass" : "^4.1.2"
2020-02-05 17:11:30 +00:00
} ,
"files" : [
"ts/**/*" ,
"ts_web/**/*" ,
"dist/**/*" ,
2021-04-23 18:41:30 +00:00
"dist_*/**/*" ,
"dist_ts/**/*" ,
2020-02-05 17:11:30 +00:00
"dist_ts_web/**/*" ,
"assets/**/*" ,
"cli.js" ,
"npmextra.json" ,
"readme.md"
2021-04-23 18:41:30 +00:00
] ,
"browserslist" : [
"last 1 chrome versions"
2024-04-14 11:38:03 +00:00
] ,
"keywords" : [
"caching" ,
2024-11-24 19:16:25 +00:00
"data storage" ,
2024-04-14 11:38:03 +00:00
"memory cache" ,
"disk cache" ,
2024-11-24 19:16:25 +00:00
"S3 storage" ,
2024-04-14 11:38:03 +00:00
"data backup" ,
2024-11-24 19:16:25 +00:00
"multi-level caching" ,
"performance" ,
2024-04-14 11:38:03 +00:00
"persistent storage" ,
"data retrieval" ,
2024-11-24 19:16:25 +00:00
"Node.js" ,
"TypeScript"
2024-05-29 12:11:10 +00:00
] ,
"homepage" : "https://code.foss.global/push.rocks/levelcache" ,
"repository" : {
"type" : "git" ,
"url" : "https://code.foss.global/push.rocks/levelcache.git"
}
2024-11-24 19:16:25 +00:00
}