fix(deps): missing dependencies in definitions package for docs link codegen (#3119)

This commit is contained in:
Meier Lukas
2025-05-16 20:10:17 +02:00
committed by GitHub
parent dd250660b8
commit 42e7fe3273
3 changed files with 16 additions and 4 deletions

View File

@@ -23,13 +23,16 @@
},
"prettier": "@homarr/prettier-config",
"dependencies": {
"@homarr/common": "workspace:^0.1.0"
"@homarr/common": "workspace:^0.1.0",
"fast-xml-parser": "^5.2.3",
"zod": "^3.24.4"
},
"devDependencies": {
"@homarr/eslint-config": "workspace:^0.2.0",
"@homarr/prettier-config": "workspace:^0.1.0",
"@homarr/tsconfig": "workspace:^0.1.0",
"eslint": "^9.26.0",
"tsx": "4.19.4",
"typescript": "^5.8.3"
}
}

View File

@@ -1,6 +1,6 @@
import fs from "fs/promises";
import path, { dirname } from "path";
import { fileURLToPath } from "url";
import fs from "node:fs/promises";
import path, { dirname } from "node:path";
import { fileURLToPath } from "node:url";
import { XMLParser } from "fast-xml-parser";
import { z } from "zod";

9
pnpm-lock.yaml generated
View File

@@ -1079,6 +1079,12 @@ importers:
'@homarr/common':
specifier: workspace:^0.1.0
version: link:../common
fast-xml-parser:
specifier: ^5.2.3
version: 5.2.3
zod:
specifier: ^3.24.4
version: 3.24.4
devDependencies:
'@homarr/eslint-config':
specifier: workspace:^0.2.0
@@ -1092,6 +1098,9 @@ importers:
eslint:
specifier: ^9.26.0
version: 9.26.0
tsx:
specifier: 4.19.4
version: 4.19.4
typescript:
specifier: ^5.8.3
version: 5.8.3