From f3f1ece0a12ada5d452ca9b1042ef0cd91fd4592 Mon Sep 17 00:00:00 2001 From: "Pimm \"de Chinchilla\" Hogeling" Date: Fri, 20 Sep 2024 14:36:32 +0200 Subject: [PATCH] Made @types/node-fetch a regular dependency instead of a dev one. As we are using and re-exporting types from this package, users of this client should install them as well. This dependency is not required for users who don't use TypeScript and thus don't rely on the types, but I don't think anyone would mind the overhead. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0accaf3c..9f655ebf 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,7 @@ "lint": "yarn lint:eslint:fix && yarn lint:prettier" }, "dependencies": { + "@types/node-fetch": "^2.6.11", "node-fetch": "^2.7.0", "ruply": "^1.0.1" }, @@ -51,7 +52,6 @@ "@mollie/eslint-config-typescript": "^1.6.5", "@types/jest": "^29.5.12", "@types/node": "^22.5.4", - "@types/node-fetch": "^2.6.11", "babel-jest": "^29.7.0", "commitizen": "^4.3.0", "cz-conventional-changelog": "^3.3.0",