From dadd37a52f93e87525c8d6fca5fd309717aa96ca Mon Sep 17 00:00:00 2001 From: flakey5 <73616808+flakey5@users.noreply.github.com> Date: Tue, 14 Jan 2025 14:38:32 -0800 Subject: [PATCH] npm: remove zod dependency Signed-off-by: flakey5 <73616808+flakey5@users.noreply.github.com> --- COLLABORATOR_GUIDE.md | 1 - package-lock.json | 4 ++-- package.json | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/COLLABORATOR_GUIDE.md b/COLLABORATOR_GUIDE.md index f8a7b5e..b0b8e6e 100644 --- a/COLLABORATOR_GUIDE.md +++ b/COLLABORATOR_GUIDE.md @@ -57,7 +57,6 @@ The Worker also uses several other Open Source libraries (not limited to) listed - [AWS S3 client](https://www.npmjs.com/package/@aws-sdk/client-s3) is used for interacting with R2's S3 entrypoint. - [Handlebars.js](https://www.npmjs.com/package/handlebars) is used for rendering templated pages. - [Sentry](https://sentry.io/about) is used for error reporting. -- [Zod](https://zod.dev/?id=introduction) is used for error reporting. ## Code Editing diff --git a/package-lock.json b/package-lock.json index f01de73..b02bb0e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11,8 +11,7 @@ "@aws-sdk/client-s3": "^3.717.0", "handlebars": "^4.7.8", "itty-router": "^5.0.18", - "toucan-js": "^4.0.0", - "zod": "^3.22.3" + "toucan-js": "^4.0.0" }, "devDependencies": { "@cloudflare/workers-types": "^4.20250109.0", @@ -5363,6 +5362,7 @@ "version": "3.22.3", "resolved": "https://registry.npmjs.org/zod/-/zod-3.22.3.tgz", "integrity": "sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==", + "dev": true, "funding": { "url": "https://github.com/sponsors/colinhacks" } diff --git a/package.json b/package.json index 2ade029..f57c0e4 100644 --- a/package.json +++ b/package.json @@ -37,7 +37,6 @@ "@aws-sdk/client-s3": "^3.717.0", "handlebars": "^4.7.8", "itty-router": "^5.0.18", - "toucan-js": "^4.0.0", - "zod": "^3.22.3" + "toucan-js": "^4.0.0" } }