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-08-06 21:43:12 +02:00
|
|
|
"./client": "./src/client.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": {
|
2024-08-20 19:21:08 +00:00
|
|
|
"dayjs": "^1.11.13",
|
2024-09-20 02:11:53 +00:00
|
|
|
"next": "^14.2.13",
|
2024-06-10 21:26:39 +02:00
|
|
|
"react": "^18.3.1",
|
2024-09-19 19:48:33 +00:00
|
|
|
"tldts": "^6.1.47"
|
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-09-23 21:34:24 +00:00
|
|
|
"eslint": "^9.11.1",
|
2024-09-09 16:49:18 +00:00
|
|
|
"typescript": "^5.6.2"
|
2024-09-01 16:40:22 +03:00
|
|
|
}
|
2024-01-02 17:12:26 +01:00
|
|
|
}
|