levelcache/package.json

72 lines
2.0 KiB
JSON
Raw Normal View History

2020-02-05 17:11:30 +00:00
{
2023-07-10 00:41:30 +00:00
"name": "@push.rocks/levelcache",
2024-02-14 00:33:57 +00:00
"version": "3.0.8",
2020-02-05 17:11:30 +00:00
"private": false,
2024-04-14 11:38:03 +00:00
"description": "A cache that utilizes memory, disk, and S3 for data storage 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-02-14 00:32:19 +00:00
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.11.17"
2020-02-05 17:11:30 +00:00
},
"dependencies": {
2024-02-14 00:32:19 +00:00
"@push.rocks/lik": "^6.0.12",
"@push.rocks/smartbucket": "^2.0.4",
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",
"@push.rocks/smartexit": "^1.0.21",
"@push.rocks/smartfile": "^11.0.4",
"@push.rocks/smartjson": "^5.0.10",
2023-07-20 20:54:07 +00:00
"@push.rocks/smartpath": "^5.0.11",
"@push.rocks/smartpromise": "^4.0.3",
2024-02-14 00:32:19 +00:00
"@push.rocks/smartstring": "^4.0.13",
"@push.rocks/smartunique": "^3.0.6",
"@push.rocks/taskbuffer": "^3.1.7",
"@tsclass/tsclass": "^4.0.51"
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",
"memory cache",
"disk cache",
"S3 cache",
"data backup",
"multilevel caching",
"performance optimization",
"persistent storage",
"data retrieval",
"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-04-14 11:38:03 +00:00
}