Files
Kilo-Org_kilocode/script/upstream/package.json
T
Mark IJbema cdfe3b693e fix(cli): pin @types/bun in script/upstream so bun install works standalone
The catalog: protocol only resolves when the package is part of the root
workspace. script/upstream is intentionally decoupled from the monorepo
so it can run during upstream merges (when the workspace may be in a
half-broken state), which means 'cd script/upstream && bun install'
failed with 'failed to resolve catalog:'. Pin to the version currently
in the root catalog.
2026-04-28 11:27:06 +02:00

25 lines
891 B
JSON

{
"name": "@kilocode/upstream-merge",
"version": "7.2.26",
"private": true,
"type": "module",
"description": "Scripts for automating upstream opencode merges into Kilo",
"scripts": {
"merge": "bun run merge.ts",
"merge:dry-run": "bun run merge.ts --dry-run",
"merge:report": "bun run merge.ts --report-only",
"transform:names": "bun run transforms/package-names.ts",
"transform:imports": "bun run codemods/transform-imports.ts",
"transform:strings": "bun run codemods/transform-strings.ts",
"transform:all": "bun run transforms/package-names.ts && bun run codemods/transform-imports.ts && bun run codemods/transform-strings.ts",
"versions": "bun run transforms/preserve-versions.ts",
"keep-ours": "bun run transforms/keep-ours.ts"
},
"dependencies": {
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@types/bun": "1.3.13"
}
}