Files
directus/packages/memory/package.json
dependabot[bot] 2345b2a1ec Bump @types/node from 18.19.12 to 18.19.14 (#21347)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.19.12 to 18.19.14.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-07 13:17:25 +01:00

44 lines
1.1 KiB
JSON

{
"name": "@directus/memory",
"version": "1.0.1",
"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.1"
},
"devDependencies": {
"@directus/tsconfig": "workspace:*",
"@types/node": "18.19.14",
"@vitest/coverage-v8": "1.2.2",
"tsup": "8.0.1",
"typescript": "5.3.3",
"vitest": "1.2.2"
}
}