2024-08-04 21:44:51 +02:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/cli",
|
|
|
|
|
"version": "0.1.0",
|
2024-09-01 16:40:22 +03:00
|
|
|
"private": true,
|
2025-03-01 17:23:00 +01:00
|
|
|
"license": "Apache-2.0",
|
2024-08-04 21:44:51 +02:00
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts"
|
|
|
|
|
},
|
|
|
|
|
"typesVersions": {
|
|
|
|
|
"*": {
|
|
|
|
|
"*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "esbuild src/index.ts --bundle --platform=node --outfile=cli.cjs --external:bcrypt --external:cpu-features --loader:.html=text --loader:.node=text",
|
2024-09-01 16:40:22 +03:00
|
|
|
"clean": "rm -rf .turbo node_modules",
|
2024-08-04 21:44:51 +02:00
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
2024-09-01 16:40:22 +03:00
|
|
|
"lint": "eslint",
|
2024-08-04 21:44:51 +02:00
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
2024-09-01 16:40:22 +03:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2024-08-04 21:44:51 +02:00
|
|
|
"dependencies": {
|
2024-11-05 13:37:45 +00:00
|
|
|
"@drizzle-team/brocli": "^0.11.0",
|
2024-08-04 21:44:51 +02:00
|
|
|
"@homarr/auth": "workspace:^0.1.0",
|
2024-09-01 16:40:22 +03:00
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
2025-04-03 23:22:31 +02:00
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2025-04-10 22:39:51 +00:00
|
|
|
"dotenv": "^16.5.0"
|
2024-08-04 21:44:51 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2025-05-17 20:04:05 +02:00
|
|
|
"esbuild": "^0.25.4",
|
2025-05-16 20:24:10 +00:00
|
|
|
"eslint": "^9.27.0",
|
2025-04-05 08:39:48 +00:00
|
|
|
"typescript": "^5.8.3"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2024-08-04 21:44:51 +02:00
|
|
|
}
|