feat(cli): add issue reconciliation scripts and GitHub helper

This commit is contained in:
Prad Nukala
2026-08-25 11:19:26 -04:00
parent 8f62875fa7
commit 10d133f005
8 changed files with 1072 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"name": "cli",
"private": true,
"type": "module",
"scripts": {
"pick": "bun ./pick.ts",
"test": "bun ./test.ts",
"sync": "bun ./sync.ts",
"close-solved": "bun ./close-solved.ts",
"close-topics": "bun ./close-topics.ts"
},
"devDependencies": {
"@clack/prompts": "^1.7.0",
"@night-slayer18/leetcode-cli": "^3.5.0",
"@types/bun": "^1.3.14"
}
}