44586c7dec
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>
37 lines
879 B
JSON
37 lines
879 B
JSON
{
|
|
"name": "@calcom/app-store-cli",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"version": "0.0.0",
|
|
"bin": "dist/cli.js",
|
|
"engines": {
|
|
"node": ">=10"
|
|
},
|
|
"scripts": {
|
|
"build": "ts-node --transpile-only src/build.ts",
|
|
"cli": "ts-node --transpile-only src/cli.tsx",
|
|
"watch": "ts-node --transpile-only src/build.ts --watch",
|
|
"generate": "ts-node --transpile-only src/build.ts",
|
|
"post-install": "yarn build"
|
|
},
|
|
"files": [
|
|
"dist/cli.js"
|
|
],
|
|
"dependencies": {
|
|
"@calcom/lib": "workspace:*",
|
|
"ink": "3.2.0",
|
|
"ink-select-input": "4.2.1",
|
|
"ink-text-input": "4.0.3",
|
|
"meow": "9.0.0",
|
|
"react": "18.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "18.0.26",
|
|
"chokidar": "3.6.0",
|
|
"eslint-plugin-react": "7.37.5",
|
|
"eslint-plugin-react-hooks": "4.6.0",
|
|
"ts-node": "10.9.2",
|
|
"typescript": "5.9.2"
|
|
}
|
|
}
|