2024-03-25 21:09:40 +01:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/redis",
|
|
|
|
|
"private": true,
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts"
|
|
|
|
|
},
|
|
|
|
|
"typesVersions": {
|
|
|
|
|
"*": {
|
|
|
|
|
"*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-04-20 12:48:04 +02:00
|
|
|
"ioredis": "5.4.1",
|
2024-04-04 18:31:40 +02:00
|
|
|
"@homarr/log": "workspace:^",
|
|
|
|
|
"@homarr/db": "workspace:^",
|
|
|
|
|
"@homarr/common": "workspace:^"
|
2024-03-25 21:09:40 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
|
|
|
|
"eslint": "^8.57.0",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2024-03-25 21:09:40 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": [
|
|
|
|
|
"@homarr/eslint-config/base"
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"prettier": "@homarr/prettier-config"
|
|
|
|
|
}
|