File size: 958 Bytes
c09f67c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | {
"name": "@midday/cache",
"version": "0.0.1",
"private": true,
"dependencies": {
"@midday/logger": "workspace:*"
},
"scripts": {
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit"
},
"exports": {
"./api-key-cache": "./src/api-key-cache.ts",
"./user-cache": "./src/user-cache.ts",
"./replication-cache": "./src/replication-cache.ts",
"./team-cache": "./src/team-cache.ts",
"./team-permissions-cache": "./src/team-permissions-cache.ts",
"./redis-client": "./src/redis-client.ts",
"./shared-redis": "./src/shared-redis.ts",
"./health": "./src/health.ts",
"./chat-cache": "./src/chat-cache.ts",
"./chat-feedback-cache": "./src/chat-feedback-cache.ts",
"./suggested-actions-cache": "./src/suggested-actions-cache.ts",
"./widget-preferences-cache": "./src/widget-preferences-cache.ts",
"./ioredis-adapter": "./src/ioredis-adapter.ts"
}
}
|