2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "@homarr/auth",
|
2023-12-08 22:35:15 +01:00
|
|
|
"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-03-14 18:43:47 +01:00
|
|
|
"type": "module",
|
2024-02-10 19:00:08 +01:00
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts",
|
2024-05-01 21:17:28 +02:00
|
|
|
"./next": "./next.ts",
|
2024-02-10 19:00:08 +01:00
|
|
|
"./security": "./security.ts",
|
|
|
|
|
"./client": "./client.ts",
|
2024-07-08 17:39:36 +02:00
|
|
|
"./server": "./server.ts",
|
2024-04-30 21:32:55 +02:00
|
|
|
"./shared": "./shared.ts",
|
2025-01-14 19:03:38 +01:00
|
|
|
"./env": "./env.ts"
|
2024-02-10 19:00:08 +01:00
|
|
|
},
|
2023-12-08 22:35:15 +01:00
|
|
|
"main": "./index.ts",
|
|
|
|
|
"types": "./index.ts",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
2024-09-01 16:40:22 +03:00
|
|
|
"lint": "eslint",
|
2023-12-08 22:35:15 +01:00
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
2024-09-01 16:40:22 +03:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2023-12-08 22:35:15 +01:00
|
|
|
"dependencies": {
|
2025-06-22 12:33:14 +00:00
|
|
|
"@auth/core": "^0.40.0",
|
2025-06-22 13:30:35 +00:00
|
|
|
"@auth/drizzle-adapter": "^1.10.0",
|
2025-03-01 17:24:31 +01:00
|
|
|
"@homarr/certificates": "workspace:^0.1.0",
|
2024-07-20 22:23:58 +02:00
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
2025-07-20 17:13:57 +02:00
|
|
|
"@homarr/core": "workspace:^0.1.0",
|
2024-09-01 16:40:22 +03:00
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
2024-07-20 22:23:58 +02:00
|
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/log": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2025-05-11 21:58:25 +02:00
|
|
|
"bcrypt": "^6.0.0",
|
2024-01-23 21:49:47 +01:00
|
|
|
"cookies": "^0.9.1",
|
2025-07-28 06:31:57 +00:00
|
|
|
"ldapts": "8.0.9",
|
2025-09-28 17:26:25 +00:00
|
|
|
"next": "15.5.4",
|
2025-06-22 13:29:17 +00:00
|
|
|
"next-auth": "5.0.0-beta.29",
|
2025-07-28 15:24:23 +00:00
|
|
|
"react": "19.1.1",
|
|
|
|
|
"react-dom": "19.1.1",
|
2025-09-25 19:27:40 +00:00
|
|
|
"zod": "^4.1.11"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2025-08-01 13:59:06 +02:00
|
|
|
"@types/bcrypt": "6.0.0",
|
2025-06-07 03:16:21 +00:00
|
|
|
"@types/cookies": "0.9.1",
|
2025-09-24 16:39:21 +00:00
|
|
|
"eslint": "^9.36.0",
|
2025-06-27 03:23:27 +00:00
|
|
|
"prettier": "^3.6.2",
|
2025-08-01 13:59:35 +02:00
|
|
|
"typescript": "^5.9.2"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|