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,
|
|
|
|
|
"license": "MIT",
|
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",
|
2024-12-31 11:30:29 +01:00
|
|
|
"./client": "./src/client.ts",
|
|
|
|
|
"./env.mjs": "./env.mjs"
|
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": {
|
2024-10-03 19:59:44 +02:00
|
|
|
"@homarr/log": "workspace:^0.1.0",
|
2024-08-20 19:21:08 +00:00
|
|
|
"dayjs": "^1.11.13",
|
2024-12-26 18:20:53 +00:00
|
|
|
"next": "^14.2.22",
|
2024-12-24 14:16:24 +01:00
|
|
|
"react": "^19.0.0"
|
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",
|
2024-12-13 21:42:35 +00:00
|
|
|
"eslint": "^9.17.0",
|
2024-11-23 19:39:20 +01:00
|
|
|
"typescript": "^5.7.2"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2024-01-02 17:12:26 +01:00
|
|
|
}
|