Files
calendar/packages/platform/utils/package.json
Volnei MunhozGitHubDevin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
44586c7dec chore: lock all package versions to match yarn.lock (#26204)
This commit pins all dependency versions in package.json files to exact
versions matching the yarn.lock file, removing ^ and ~ prefixes.

Changes:
- Locked 427 dependencies across 47 package.json files
- Versions now match exactly what is resolved in yarn.lock
- Ensures reproducible builds and prevents unexpected version drift

This change improves build reproducibility by ensuring that the versions
specified in package.json files match exactly what yarn.lock resolves to.

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
2025-12-26 11:54:30 -03:00

23 lines
560 B
JSON

{
"name": "@calcom/platform-utils",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"private": true,
"scripts": {
"test": "jest ./tests",
"build": "tsc --build --force tsconfig.json",
"build:watch": "tsc --build --force ./tsconfig.json --watch",
"post-install": "yarn build"
},
"dependencies": {
"@calcom/platform-constants": "workspace:*",
"@calcom/platform-types": "workspace:*"
},
"devDependencies": {
"@types/jest": "29.5.12",
"jest": "29.7.0",
"ts-jest": "29.1.4"
}
}