Files
Kilo-Org_kilocode/script/upstream/package.json
T
kilo-maintainer[bot] a1c08dbca4 release: v7.2.34
2026-05-04 03:38:53 +00:00

26 lines
945 B
JSON

{
"name": "@kilocode/upstream-merge",
"version": "7.2.34",
"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",
"fix:markers": "bun run fix-kilocode-markers.ts",
"keep-ours": "bun run transforms/keep-ours.ts"
},
"dependencies": {
"ts-morph": "^24.0.0"
},
"devDependencies": {
"@types/bun": "1.3.13"
}
}