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";