mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
1.8 KiB
77 lines
1.8 KiB
{
|
|
"name": "cache-manager",
|
|
"version": "7.2.0",
|
|
"description": "Cache Manager for Node.js",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"require": "./dist/index.cjs",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"LICENSE"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jaredwray/cacheable.git",
|
|
"directory": "packages/cache-manager"
|
|
},
|
|
"keywords": [
|
|
"cache",
|
|
"caching",
|
|
"cache manager",
|
|
"node",
|
|
"node.js",
|
|
"in-memory cache",
|
|
"redis",
|
|
"memcached",
|
|
"multi-store cache",
|
|
"ttl",
|
|
"caching layer",
|
|
"cache abstraction",
|
|
"cache middleware",
|
|
"cache strategies",
|
|
"cache wrapper"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Jared Wray",
|
|
"email": "me@jaredwray.com"
|
|
},
|
|
{
|
|
"name": "Tim Phan",
|
|
"email": "timphan.dev@gmail.com"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"keyv": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^2.2.0",
|
|
"@faker-js/faker": "^9.9.0",
|
|
"@keyv/redis": "^5.1.0",
|
|
"@types/node": "^24.2.0",
|
|
"@vitest/coverage-v8": "^3.2.4",
|
|
"@vitest/spy": "^3.2.4",
|
|
"cache-manager-redis-yet": "^5.1.5",
|
|
"rimraf": "^6.0.1",
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.9.2",
|
|
"vitest": "^3.2.4",
|
|
"cacheable": "^1.10.4"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./dist ./coverage ./node_modules",
|
|
"lint": "biome check --write --error-on-warnings",
|
|
"test": "pnpm lint && vitest run --coverage",
|
|
"test:ci": "biome check --error-on-warnings && vitest run --coverage",
|
|
"build": "rimraf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
|
|
"prepublish": "pnpm run build"
|
|
}
|
|
}
|