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-05-10 06:24:50 +00:00
|
|
|
"@auth/core": "^0.39.1",
|
2025-05-10 07:19:27 +00:00
|
|
|
"@auth/drizzle-adapter": "^1.9.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",
|
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",
|
2025-02-18 22:54:15 +01:00
|
|
|
"@homarr/env": "workspace:^0.1.0",
|
2024-07-20 22:23:58 +02:00
|
|
|
"@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-05-06 19:38:53 +02:00
|
|
|
"ldapts": "8.0.0",
|
2025-05-06 23:21:35 +00:00
|
|
|
"next": "15.3.2",
|
2025-05-10 06:25:49 +00:00
|
|
|
"next-auth": "5.0.0-beta.28",
|
2025-03-28 20:20:12 +00:00
|
|
|
"react": "19.1.0",
|
|
|
|
|
"react-dom": "19.1.0",
|
2025-05-20 23:20:46 +00:00
|
|
|
"zod": "^3.25.8"
|
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",
|
2023-12-10 17:12:20 +01:00
|
|
|
"@types/bcrypt": "5.0.2",
|
2024-02-04 08:28:18 +01:00
|
|
|
"@types/cookies": "0.9.0",
|
2025-05-16 20:24:10 +00:00
|
|
|
"eslint": "^9.27.0",
|
2025-03-03 02:25:21 +00:00
|
|
|
"prettier": "^3.5.3",
|
2025-04-05 08:39:48 +00:00
|
|
|
"typescript": "^5.8.3"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|