2024-01-02 17:12:26 +01:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/common",
|
|
|
|
|
"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-01-02 17:12:26 +01:00
|
|
|
"exports": {
|
2024-04-04 18:31:40 +02:00
|
|
|
".": "./index.ts",
|
2024-08-06 21:43:12 +02:00
|
|
|
"./types": "./src/types.ts",
|
2024-08-04 21:44:51 +02:00
|
|
|
"./server": "./src/server.ts",
|
2025-09-03 17:37:18 +02:00
|
|
|
"./init-dns": "./src/dns.ts",
|
2024-12-31 11:30:29 +01:00
|
|
|
"./client": "./src/client.ts",
|
2025-08-15 20:15:58 +02:00
|
|
|
"./env": "./env.ts"
|
2024-01-02 17:12:26 +01:00
|
|
|
},
|
|
|
|
|
"typesVersions": {
|
|
|
|
|
"*": {
|
|
|
|
|
"*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
2024-09-01 16:40:22 +03:00
|
|
|
"lint": "eslint",
|
2024-01-02 17:12:26 +01:00
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
2024-09-01 16:40:22 +03:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2024-06-10 21:26:39 +02:00
|
|
|
"dependencies": {
|
2025-07-20 17:13:57 +02:00
|
|
|
"@homarr/core": "workspace:^0.1.0",
|
2024-10-03 19:59:44 +02:00
|
|
|
"@homarr/log": "workspace:^0.1.0",
|
2025-07-11 19:54:17 +01:00
|
|
|
"@paralleldrive/cuid2": "^2.2.2",
|
2025-09-04 04:17:26 +00:00
|
|
|
"dayjs": "^1.11.18",
|
2025-09-23 11:21:20 +00:00
|
|
|
"dns-caching": "^0.2.7",
|
2025-09-28 17:26:25 +00:00
|
|
|
"next": "15.5.4",
|
2025-09-10 21:17:36 +02:00
|
|
|
"octokit": "^5.0.3",
|
2025-07-28 15:24:23 +00:00
|
|
|
"react": "19.1.1",
|
|
|
|
|
"react-dom": "19.1.1",
|
2025-09-14 17:18:49 +00:00
|
|
|
"undici": "7.16.0",
|
2025-09-25 19:27:40 +00:00
|
|
|
"zod": "^4.1.11",
|
2025-09-24 10:35:41 +00:00
|
|
|
"zod-validation-error": "^4.0.2"
|
2024-06-10 21:26:39 +02:00
|
|
|
},
|
2024-01-02 17:12:26 +01:00
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2025-09-24 16:39:21 +00:00
|
|
|
"eslint": "^9.36.0",
|
2025-08-01 13:59:35 +02:00
|
|
|
"typescript": "^5.9.2"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2024-01-02 17:12:26 +01:00
|
|
|
}
|