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-10-31 03:22:51 +00:00
|
|
|
"@auth/core": "^0.41.1",
|
2025-10-31 04:38:56 +00:00
|
|
|
"@auth/drizzle-adapter": "^1.11.1",
|
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/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-12-19 06:41:15 +00:00
|
|
|
"ldapts": "8.0.23",
|
2025-12-12 15:44:35 +01:00
|
|
|
"next": "16.0.10",
|
2025-10-29 12:55:30 +00:00
|
|
|
"next-auth": "5.0.0-beta.30",
|
2025-12-16 23:28:52 +00:00
|
|
|
"react": "19.2.3",
|
|
|
|
|
"react-dom": "19.2.3",
|
2025-12-03 10:10:53 +00:00
|
|
|
"zod": "^4.1.13"
|
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-10-29 04:39:02 +00:00
|
|
|
"@types/cookies": "0.9.2",
|
2025-12-17 23:28:50 +00:00
|
|
|
"eslint": "^9.39.2",
|
2025-12-08 14:19:46 +01:00
|
|
|
"prettier": "^3.7.4",
|
2025-10-05 21:27:02 +00:00
|
|
|
"typescript": "^5.9.3"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|