mirror of
https://github.com/directus/directus.git
synced 2026-01-13 16:18:05 -05:00
* Dangerously update API deps * Dangerously move app dependencies to pnpm-workspace * Move all dependencies to catalog * Sort catalog * Pnpm update * Use pnpm 10.14 * Update for zod breaking change * Fix unhead breaking change * Downgrade major api upgrades * Downgrade app major upgrades * Fix app tests * Downgrade isolated-vm * Add changeset * Fix template in head * Resolve unhead lang signature * Downgrade unhead * Downgrade keyv/redis It uses a different redis lib under the hood which is incompatible * Resolve import in test * Update and move workspace root dependencies * Update CSS for updated linter rules * Oops * Run formatter * Update rule name * Run prettier * Move utils peer to catalog * Add focus-trap dependency
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "@directus/memory",
|
|
"version": "3.0.7",
|
|
"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 run",
|
|
"test:coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@directus/errors": "workspace:*",
|
|
"@directus/utils": "workspace:*",
|
|
"ioredis": "catalog:",
|
|
"lru-cache": "catalog:",
|
|
"rate-limiter-flexible": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@directus/tsconfig": "catalog:",
|
|
"@types/node": "catalog:",
|
|
"@vitest/coverage-v8": "catalog:",
|
|
"tsup": "catalog:",
|
|
"typescript": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|