2023-12-19 23:09:41 +01:00
|
|
|
{
|
2024-01-02 14:18:37 +01:00
|
|
|
"name": "@homarr/translation",
|
2023-12-19 23:09:41 +01:00
|
|
|
"private": true,
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts",
|
|
|
|
|
"./client": "./src/client.ts",
|
|
|
|
|
"./server": "./src/server.ts",
|
|
|
|
|
"./middleware": "./src/middleware.ts"
|
|
|
|
|
},
|
|
|
|
|
"typesVersions": {
|
|
|
|
|
"*": {
|
|
|
|
|
"*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"lint": "eslint .",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"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-04-11 20:56:02 +02:00
|
|
|
"typescript": "^5.4.5"
|
2023-12-19 23:09:41 +01:00
|
|
|
},
|
|
|
|
|
"eslintConfig": {
|
|
|
|
|
"extends": [
|
2024-01-02 14:18:37 +01:00
|
|
|
"@homarr/eslint-config/base"
|
2023-12-19 23:09:41 +01:00
|
|
|
]
|
|
|
|
|
},
|
2024-01-02 14:18:37 +01:00
|
|
|
"prettier": "@homarr/prettier-config",
|
2023-12-19 23:09:41 +01:00
|
|
|
"dependencies": {
|
2024-02-10 11:27:31 +01:00
|
|
|
"next-international": "^1.2.4"
|
2023-12-19 23:09:41 +01:00
|
|
|
}
|
|
|
|
|
}
|