2023-12-08 22:35:15 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "@homarr/api",
|
2023-12-08 22:35:15 +01:00
|
|
|
"version": "0.1.0",
|
2024-02-03 22:26:12 +01:00
|
|
|
"exports": {
|
2024-02-17 12:52:25 +01:00
|
|
|
".": "./src/index.ts",
|
2024-03-12 21:23:25 +01:00
|
|
|
"./client": "./src/client.ts",
|
2024-04-07 11:32:29 +02:00
|
|
|
"./server": "./src/server.ts",
|
|
|
|
|
"./websocket": "./src/websocket.ts"
|
2024-02-03 22:26:12 +01:00
|
|
|
},
|
2023-12-08 22:35:15 +01:00
|
|
|
"private": true,
|
|
|
|
|
"main": "./index.ts",
|
|
|
|
|
"types": "./index.ts",
|
|
|
|
|
"license": "MIT",
|
2024-03-14 18:43:47 +01:00
|
|
|
"type": "module",
|
2023-12-08 22:35:15 +01:00
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
2024-04-07 11:32:29 +02:00
|
|
|
"typecheck": "tsc --noEmit"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/auth": "workspace:^0.1.0",
|
2024-03-25 18:57:59 +01:00
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/db": "workspace:^0.1.0",
|
2024-03-14 18:43:47 +01:00
|
|
|
"@homarr/definitions": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/log": "workspace:^",
|
2024-03-25 21:09:40 +01:00
|
|
|
"@homarr/redis": "workspace:^0.1.0",
|
2024-04-04 18:31:40 +02:00
|
|
|
"@homarr/tasks": "workspace:^0.1.0",
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/validation": "workspace:^0.1.0",
|
2023-12-08 22:35:15 +01:00
|
|
|
"@trpc/client": "next",
|
|
|
|
|
"@trpc/server": "next",
|
2024-04-07 11:32:29 +02:00
|
|
|
"superjson": "2.2.1"
|
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",
|
2024-02-27 21:19:06 +01:00
|
|
|
"eslint": "^8.57.0",
|
2024-02-08 19:58:56 +01:00
|
|
|
"prettier": "^3.2.5",
|
2024-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2023-12-08 22:35:15 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"root": true,
|
|
|
|
|
"extends": [
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/eslint-config/base"
|
2023-12-08 22:35:15 +01:00
|
|
|
]
|
|
|
|
|
},
|
2024-01-02 14:18:37 +01:00
|
|
|
"prettier": "@homarr/prettier-config"
|
2023-12-10 17:12:20 +01:00
|
|
|
}
|