Files
levelcache/package.json

71 lines
2.0 KiB
JSON
Raw Normal View History

2020-02-05 17:11:30 +00:00
{
2023-07-10 02:41:30 +02:00
"name": "@push.rocks/levelcache",
2025-08-28 18:43:56 +00:00
"version": "3.2.0",
2020-02-05 17:11:30 +00:00
"private": false,
"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 22:45:12 +01:00
"type": "module",
2020-02-05 17:11:30 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 60)",
"build": "(tsbuild tsfolders --allowimplicitany)",
2024-02-14 01:32:19 +01: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": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.5.2"
2020-02-05 17:11:30 +00:00
},
"dependencies": {
"@push.rocks/lik": "^6.4.0",
"@push.rocks/smartbucket": "^4.6.0",
"@push.rocks/smartfs": "^1.5.0",
"@push.rocks/smartjson": "^6.0.0",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartpromise": "^4.2.3",
"@tsclass/tsclass": "^9.5.0"
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",
".smartconfig.json",
2020-02-05 17:11:30 +00:00
"readme.md"
2021-04-23 18:41:30 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 13:38:03 +02:00
],
"keywords": [
"caching",
"data storage",
2024-04-14 13:38:03 +02:00
"memory cache",
"disk cache",
"S3 storage",
2024-04-14 13:38:03 +02:00
"data backup",
"multi-level caching",
"performance",
2024-04-14 13:38:03 +02:00
"persistent storage",
"data retrieval",
"Node.js",
"TypeScript"
2024-05-29 14:11:10 +02:00
],
"homepage": "https://code.foss.global/push.rocks/levelcache#readme",
2024-05-29 14:11:10 +02:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/levelcache.git"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748",
"bugs": {
"url": "https://code.foss.global/push.rocks/levelcache/issues"
2024-05-29 14:11:10 +02:00
}
2024-11-24 20:16:25 +01:00
}