Files
Homarr/packages/cron-job-runner/package.json

40 lines
975 B
JSON
Raw Normal View History

2024-07-01 18:57:40 +02:00
{
"name": "@homarr/cron-job-runner",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
2024-07-01 18:57:40 +02:00
"type": "module",
"exports": {
".": "./index.ts",
"./register": "./src/register.ts"
2024-07-01 18:57:40 +02:00
},
"typesVersions": {
"*": {
"*": [
"src/*"
]
}
},
"scripts": {
"clean": "rm -rf .turbo node_modules",
"format": "prettier --check . --ignore-path ../../.gitignore",
"lint": "eslint",
2024-07-01 18:57:40 +02:00
"typecheck": "tsc --noEmit"
},
"prettier": "@homarr/prettier-config",
2024-07-01 18:57:40 +02:00
"dependencies": {
"@homarr/common": "workspace:^0.1.0",
2024-07-01 18:57:40 +02:00
"@homarr/cron-jobs": "workspace:^0.1.0",
"@homarr/log": "workspace:^0.1.0",
"@homarr/redis": "workspace:^0.1.0",
"@homarr/validation": "workspace:^0.1.0"
2024-07-01 18:57:40 +02:00
},
"devDependencies": {
"@homarr/eslint-config": "workspace:^0.2.0",
"@homarr/prettier-config": "workspace:^0.1.0",
"@homarr/tsconfig": "workspace:^0.1.0",
"eslint": "^9.27.0",
"typescript": "^5.8.3"
}
2024-07-01 18:57:40 +02:00
}