2025-01-22 20:43:54 +01:00
|
|
|
{
|
|
|
|
|
"name": "@homarr/docker",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"private": true,
|
2025-03-01 17:23:00 +01:00
|
|
|
"license": "Apache-2.0",
|
2025-01-22 20:43:54 +01:00
|
|
|
"type": "module",
|
|
|
|
|
"exports": {
|
|
|
|
|
".": "./index.ts",
|
2025-05-23 21:35:04 +03:00
|
|
|
"./shared": "./src/shared.ts",
|
2025-01-22 20:43:54 +01:00
|
|
|
"./env": "./src/env.ts"
|
|
|
|
|
},
|
|
|
|
|
"typesVersions": {
|
|
|
|
|
"*": {
|
|
|
|
|
"*": [
|
|
|
|
|
"src/*"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"clean": "rm -rf .turbo node_modules",
|
|
|
|
|
"format": "prettier --check . --ignore-path ../../.gitignore",
|
|
|
|
|
"lint": "eslint",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"prettier": "@homarr/prettier-config",
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@homarr/common": "workspace:^0.1.0",
|
2025-07-20 17:13:57 +02:00
|
|
|
"@homarr/core": "workspace:^0.1.0",
|
2025-10-05 03:20:13 +00:00
|
|
|
"dockerode": "^4.0.9"
|
2025-01-22 20:43:54 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@homarr/eslint-config": "workspace:^0.2.0",
|
|
|
|
|
"@homarr/prettier-config": "workspace:^0.1.0",
|
|
|
|
|
"@homarr/tsconfig": "workspace:^0.1.0",
|
2025-10-29 05:33:31 +00:00
|
|
|
"@types/dockerode": "^3.3.45",
|
2025-11-09 16:34:41 +00:00
|
|
|
"eslint": "^9.39.1",
|
2025-10-05 21:27:02 +00:00
|
|
|
"typescript": "^5.9.3"
|
2025-01-22 20:43:54 +01:00
|
|
|
}
|
|
|
|
|
}
|