mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 11:19:12 +01:00
* feat: add real time logger * feat: add subscription for logging * feat: use timestamp and level in xterm, migrate to new xterm package * feat: improve design on log page * fit: remove xterm fit addon * fix: dispose terminal correctly * style: format code * refactor: add jsdoc for redis-transport * fix: redis connection not possible sometimes * feat: make terminal full size * fix: deepsource issues * fix: lint issue --------- Co-authored-by: Meier Lukas <meierschlumpf@gmail.com>
45 lines
949 B
JSON
45 lines
949 B
JSON
{
|
|
"name": "@homarr/log",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"exports": {
|
|
".": {
|
|
"types": "./src/index.d.ts",
|
|
"default": "./src/index.mjs"
|
|
},
|
|
"./override": "./src/override.cjs"
|
|
},
|
|
"typesVersions": {
|
|
"*": {
|
|
"*": [
|
|
"src/*"
|
|
]
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"clean": "rm -rf .turbo node_modules",
|
|
"lint": "eslint .",
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"ioredis": "5.3.2",
|
|
"superjson": "2.2.1",
|
|
"winston": "3.13.0"
|
|
},
|
|
"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",
|
|
"typescript": "^5.4.3"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@homarr/eslint-config/base"
|
|
]
|
|
},
|
|
"prettier": "@homarr/prettier-config"
|
|
}
|