Files
kilo-maintainer[bot] 4093d575c1 release: v1.0.25
2026-02-21 13:04:22 +00:00

25 lines
893 B
JSON

{
"name": "@kilocode/upstream-merge",
"version": "1.0.25",
"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": "catalog:"
}
}