-
Notifications
You must be signed in to change notification settings - Fork 2k
Main #608
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Main #608
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Summary of ChangesHello @pantamit-dev, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request establishes or updates the project's development environment by introducing a "package-lock.json" file. This ensures deterministic dependency resolution and integrates modern tooling such as TypeScript for robust type-checking, Biome for consistent code style and quality, and "tsx" for streamlined execution of TypeScript code, specifically tailored for Google Workspace Apps Script development. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Code Review
This pull request introduces a package-lock.json file. However, the project's package.json explicitly configures pnpm as the package manager. Using npm and committing its package-lock.json file contradicts this setup and will cause dependency inconsistencies for anyone using the specified package manager. To ensure reproducible builds, the project should consistently use pnpm and have a pnpm-lock.yaml file instead.
| { | ||
| "name": "googleworkspace-apps-script-samples", | ||
| "version": "1.0.0", | ||
| "lockfileVersion": 3, | ||
| "requires": true, | ||
| "packages": { | ||
| "": { | ||
| "name": "googleworkspace-apps-script-samples", | ||
| "version": "1.0.0", | ||
| "license": "MIT", | ||
| "devDependencies": { | ||
| "@biomejs/biome": "1.9.4", | ||
| "@types/google-apps-script": "^2.0.8", | ||
| "@types/node": "^24.10.1", | ||
| "tsx": "^4.20.6", | ||
| "typescript": "^5.9.3" | ||
| }, | ||
| "engines": { | ||
| "node": ">=20" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/biome": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/biome/-/biome-1.9.4.tgz", | ||
| "integrity": "sha512-1rkd7G70+o9KkTn5KLmDYXihGoTaIGO9PIIN2ZB7UJxFrWw04CZHPYiMRjYsaDvVV7hP1dYNRLxSANLaBFGpog==", | ||
| "dev": true, | ||
| "hasInstallScript": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "bin": { | ||
| "biome": "bin/biome" | ||
| }, | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| }, | ||
| "funding": { | ||
| "type": "opencollective", | ||
| "url": "https://opencollective.com/biome" | ||
| }, | ||
| "optionalDependencies": { | ||
| "@biomejs/cli-darwin-arm64": "1.9.4", | ||
| "@biomejs/cli-darwin-x64": "1.9.4", | ||
| "@biomejs/cli-linux-arm64": "1.9.4", | ||
| "@biomejs/cli-linux-arm64-musl": "1.9.4", | ||
| "@biomejs/cli-linux-x64": "1.9.4", | ||
| "@biomejs/cli-linux-x64-musl": "1.9.4", | ||
| "@biomejs/cli-win32-arm64": "1.9.4", | ||
| "@biomejs/cli-win32-x64": "1.9.4" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-darwin-arm64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-arm64/-/cli-darwin-arm64-1.9.4.tgz", | ||
| "integrity": "sha512-bFBsPWrNvkdKrNCYeAp+xo2HecOGPAy9WyNyB/jKnnedgzl4W4Hb9ZMzYNbf8dMCGmUdSavlYHiR01QaYR58cw==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-darwin-x64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-darwin-x64/-/cli-darwin-x64-1.9.4.tgz", | ||
| "integrity": "sha512-ngYBh/+bEedqkSevPVhLP4QfVPCpb+4BBe2p7Xs32dBgs7rh9nY2AIYUL6BgLw1JVXV8GlpKmb/hNiuIxfPfZg==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-linux-arm64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64/-/cli-linux-arm64-1.9.4.tgz", | ||
| "integrity": "sha512-fJIW0+LYujdjUgJJuwesP4EjIBl/N/TcOX3IvIHJQNsAqvV2CHIogsmA94BPG6jZATS4Hi+xv4SkBBQSt1N4/g==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-linux-arm64-musl": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-arm64-musl/-/cli-linux-arm64-musl-1.9.4.tgz", | ||
| "integrity": "sha512-v665Ct9WCRjGa8+kTr0CzApU0+XXtRgwmzIf1SeKSGAv+2scAlW6JR5PMFo6FzqqZ64Po79cKODKf3/AAmECqA==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-linux-x64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64/-/cli-linux-x64-1.9.4.tgz", | ||
| "integrity": "sha512-lRCJv/Vi3Vlwmbd6K+oQ0KhLHMAysN8lXoCI7XeHlxaajk06u7G+UsFSO01NAs5iYuWKmVZjmiOzJ0OJmGsMwg==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-linux-x64-musl": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-linux-x64-musl/-/cli-linux-x64-musl-1.9.4.tgz", | ||
| "integrity": "sha512-gEhi/jSBhZ2m6wjV530Yy8+fNqG8PAinM3oV7CyO+6c3CEh16Eizm21uHVsyVBEB6RIM8JHIl6AGYCv6Q6Q9Tg==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-win32-arm64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-win32-arm64/-/cli-win32-arm64-1.9.4.tgz", | ||
| "integrity": "sha512-tlbhLk+WXZmgwoIKwHIHEBZUwxml7bRJgk0X2sPyNR3S93cdRq6XulAZRQJ17FYGGzWne0fgrXBKpl7l4M87Hg==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@biomejs/cli-win32-x64": { | ||
| "version": "1.9.4", | ||
| "resolved": "https://registry.npmjs.org/@biomejs/cli-win32-x64/-/cli-win32-x64-1.9.4.tgz", | ||
| "integrity": "sha512-8Y5wMhVIPaWe6jw2H+KlEm4wP/f7EW3810ZLmDlrEEy5KvBsb9ECEfu/kMWD484ijfQ8+nIi0giMgu9g1UAuuA==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT OR Apache-2.0", | ||
| "optional": true, | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
| "engines": { | ||
| "node": ">=14.21.3" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/aix-ppc64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.27.2.tgz", | ||
| "integrity": "sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==", | ||
| "cpu": [ | ||
| "ppc64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "aix" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/android-arm": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.27.2.tgz", | ||
| "integrity": "sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==", | ||
| "cpu": [ | ||
| "arm" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "android" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/android-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "android" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/android-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.27.2.tgz", | ||
| "integrity": "sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "android" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/darwin-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/darwin-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.27.2.tgz", | ||
| "integrity": "sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/freebsd-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "freebsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/freebsd-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.27.2.tgz", | ||
| "integrity": "sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "freebsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-arm": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.27.2.tgz", | ||
| "integrity": "sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==", | ||
| "cpu": [ | ||
| "arm" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-ia32": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.27.2.tgz", | ||
| "integrity": "sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==", | ||
| "cpu": [ | ||
| "ia32" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-loong64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.27.2.tgz", | ||
| "integrity": "sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==", | ||
| "cpu": [ | ||
| "loong64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-mips64el": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.27.2.tgz", | ||
| "integrity": "sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==", | ||
| "cpu": [ | ||
| "mips64el" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-ppc64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.27.2.tgz", | ||
| "integrity": "sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==", | ||
| "cpu": [ | ||
| "ppc64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-riscv64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.27.2.tgz", | ||
| "integrity": "sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==", | ||
| "cpu": [ | ||
| "riscv64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-s390x": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.27.2.tgz", | ||
| "integrity": "sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==", | ||
| "cpu": [ | ||
| "s390x" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/linux-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.27.2.tgz", | ||
| "integrity": "sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "linux" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/netbsd-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "netbsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/netbsd-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.27.2.tgz", | ||
| "integrity": "sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "netbsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/openbsd-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "openbsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/openbsd-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.27.2.tgz", | ||
| "integrity": "sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "openbsd" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/openharmony-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/openharmony-arm64/-/openharmony-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "openharmony" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/sunos-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.27.2.tgz", | ||
| "integrity": "sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "sunos" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/win32-arm64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.27.2.tgz", | ||
| "integrity": "sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==", | ||
| "cpu": [ | ||
| "arm64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/win32-ia32": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.27.2.tgz", | ||
| "integrity": "sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==", | ||
| "cpu": [ | ||
| "ia32" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@esbuild/win32-x64": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.27.2.tgz", | ||
| "integrity": "sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==", | ||
| "cpu": [ | ||
| "x64" | ||
| ], | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "win32" | ||
| ], | ||
| "engines": { | ||
| "node": ">=18" | ||
| } | ||
| }, | ||
| "node_modules/@types/google-apps-script": { | ||
| "version": "2.0.8", | ||
| "resolved": "https://registry.npmjs.org/@types/google-apps-script/-/google-apps-script-2.0.8.tgz", | ||
| "integrity": "sha512-mGPmzzdgBu1DlwrjOhFQ8u0se6AF/z4OpaTzOGwNKxwXZjE7J+IssfE3oL24j/S/p6aFiSTIptHZvbyqeZD8vA==", | ||
| "dev": true, | ||
| "license": "MIT" | ||
| }, | ||
| "node_modules/@types/node": { | ||
| "version": "24.10.4", | ||
| "resolved": "https://registry.npmjs.org/@types/node/-/node-24.10.4.tgz", | ||
| "integrity": "sha512-vnDVpYPMzs4wunl27jHrfmwojOGKya0xyM3sH+UE5iv5uPS6vX7UIoh6m+vQc5LGBq52HBKPIn/zcSZVzeDEZg==", | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "undici-types": "~7.16.0" | ||
| } | ||
| }, | ||
| "node_modules/esbuild": { | ||
| "version": "0.27.2", | ||
| "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.27.2.tgz", | ||
| "integrity": "sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==", | ||
| "dev": true, | ||
| "hasInstallScript": true, | ||
| "license": "MIT", | ||
| "bin": { | ||
| "esbuild": "bin/esbuild" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18" | ||
| }, | ||
| "optionalDependencies": { | ||
| "@esbuild/aix-ppc64": "0.27.2", | ||
| "@esbuild/android-arm": "0.27.2", | ||
| "@esbuild/android-arm64": "0.27.2", | ||
| "@esbuild/android-x64": "0.27.2", | ||
| "@esbuild/darwin-arm64": "0.27.2", | ||
| "@esbuild/darwin-x64": "0.27.2", | ||
| "@esbuild/freebsd-arm64": "0.27.2", | ||
| "@esbuild/freebsd-x64": "0.27.2", | ||
| "@esbuild/linux-arm": "0.27.2", | ||
| "@esbuild/linux-arm64": "0.27.2", | ||
| "@esbuild/linux-ia32": "0.27.2", | ||
| "@esbuild/linux-loong64": "0.27.2", | ||
| "@esbuild/linux-mips64el": "0.27.2", | ||
| "@esbuild/linux-ppc64": "0.27.2", | ||
| "@esbuild/linux-riscv64": "0.27.2", | ||
| "@esbuild/linux-s390x": "0.27.2", | ||
| "@esbuild/linux-x64": "0.27.2", | ||
| "@esbuild/netbsd-arm64": "0.27.2", | ||
| "@esbuild/netbsd-x64": "0.27.2", | ||
| "@esbuild/openbsd-arm64": "0.27.2", | ||
| "@esbuild/openbsd-x64": "0.27.2", | ||
| "@esbuild/openharmony-arm64": "0.27.2", | ||
| "@esbuild/sunos-x64": "0.27.2", | ||
| "@esbuild/win32-arm64": "0.27.2", | ||
| "@esbuild/win32-ia32": "0.27.2", | ||
| "@esbuild/win32-x64": "0.27.2" | ||
| } | ||
| }, | ||
| "node_modules/fsevents": { | ||
| "version": "2.3.3", | ||
| "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", | ||
| "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", | ||
| "dev": true, | ||
| "hasInstallScript": true, | ||
| "license": "MIT", | ||
| "optional": true, | ||
| "os": [ | ||
| "darwin" | ||
| ], | ||
| "engines": { | ||
| "node": "^8.16.0 || ^10.6.0 || >=11.0.0" | ||
| } | ||
| }, | ||
| "node_modules/get-tsconfig": { | ||
| "version": "4.13.0", | ||
| "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.13.0.tgz", | ||
| "integrity": "sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==", | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "resolve-pkg-maps": "^1.0.0" | ||
| }, | ||
| "funding": { | ||
| "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" | ||
| } | ||
| }, | ||
| "node_modules/resolve-pkg-maps": { | ||
| "version": "1.0.0", | ||
| "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", | ||
| "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "funding": { | ||
| "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" | ||
| } | ||
| }, | ||
| "node_modules/tsx": { | ||
| "version": "4.21.0", | ||
| "resolved": "https://registry.npmjs.org/tsx/-/tsx-4.21.0.tgz", | ||
| "integrity": "sha512-5C1sg4USs1lfG0GFb2RLXsdpXqBSEhAaA/0kPL01wxzpMqLILNxIxIOKiILz+cdg/pLnOUxFYOR5yhHU666wbw==", | ||
| "dev": true, | ||
| "license": "MIT", | ||
| "dependencies": { | ||
| "esbuild": "~0.27.0", | ||
| "get-tsconfig": "^4.7.5" | ||
| }, | ||
| "bin": { | ||
| "tsx": "dist/cli.mjs" | ||
| }, | ||
| "engines": { | ||
| "node": ">=18.0.0" | ||
| }, | ||
| "optionalDependencies": { | ||
| "fsevents": "~2.3.3" | ||
| } | ||
| }, | ||
| "node_modules/typescript": { | ||
| "version": "5.9.3", | ||
| "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", | ||
| "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", | ||
| "dev": true, | ||
| "license": "Apache-2.0", | ||
| "bin": { | ||
| "tsc": "bin/tsc", | ||
| "tsserver": "bin/tsserver" | ||
| }, | ||
| "engines": { | ||
| "node": ">=14.17" | ||
| } | ||
| }, | ||
| "node_modules/undici-types": { | ||
| "version": "7.16.0", | ||
| "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.16.0.tgz", | ||
| "integrity": "sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==", | ||
| "dev": true, | ||
| "license": "MIT" | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The package.json file specifies pnpm as the package manager via the packageManager field. This package-lock.json file is generated by npm, not pnpm. Using mixed package managers in a project leads to inconsistent dependency installation and can cause hard-to-debug issues.
Please remove this package-lock.json file and generate the correct pnpm-lock.yaml file by running pnpm install.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pnpm install
Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
Fixes # (issue)
Is it been tested?
Checklist