mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
Bumps [lru-cache](https://github.com/isaacs/node-lru-cache) from 10.1.0 to 10.2.0. - [Changelog](https://github.com/isaacs/node-lru-cache/blob/main/CHANGELOG.md) - [Commits](https://github.com/isaacs/node-lru-cache/compare/v10.1.0...v10.2.0) --- updated-dependencies: - dependency-name: lru-cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/memory",
|
|
"version": "1.0.0",
|
|
"description": "Memory / Redis abstraction for Directus",
|
|
"homepage": "https://directus.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/directus/directus.git",
|
|
"directory": "packages/memory"
|
|
},
|
|
"funding": "https://github.com/directus/directus?sponsor=1",
|
|
"license": "MIT",
|
|
"author": "Rijk van Zanten <rijkvanzanten@me.com>",
|
|
"type": "module",
|
|
"exports": {
|
|
".": "./dist/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"main": "dist/index.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format=esm --dts",
|
|
"dev": "tsup src/index.ts --format=esm --dts --watch",
|
|
"test": "vitest --watch=false"
|
|
},
|
|
"dependencies": {
|
|
"@directus/errors": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"ioredis": "5.3.2",
|
|
"lru-cache": "10.2.0",
|
|
"rate-limiter-flexible": "4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "workspace:*",
|
|
"@types/node": "18.19.3",
|
|
"@vitest/coverage-v8": "1.1.0",
|
|
"tsup": "8.0.1",
|
|
"typescript": "5.3.3",
|
|
"vitest": "1.1.1"
|
|
}
|
|
}
|