Files
leetcode/package.json
T
Prad Nukala 382475b7f1 feat(ci): auto-close problem issues when a solution lands in work/
Reconciles work/ against open `problem` issues instead of diffing the push,
so re-runs are no-ops and backfills need no special casing.

Skips scaffolded stubs: `bun run pick` writes a statement header plus an
empty body, so file existence alone must not close an issue.
2026-08-24 14:31:36 -04:00

27 lines
614 B
JSON

{
"name": "leetcode",
"private": true,
"type": "module",
"scripts": {
"dev": "blume dev",
"build": "blume build",
"doctor": "blume doctor",
"close-solved": "bun scripts/close-solved.ts",
"pick": "bun scripts/pick.ts",
"sync": "bun scripts/sync.ts",
"test": "bun scripts/test.ts"
},
"dependencies": {
"@revealjs/react": "^0.2.1",
"blume": "^1.5.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"reveal.js": "^6.0.1"
},
"devDependencies": {
"@clack/prompts": "^1.7.0",
"@night-slayer18/leetcode-cli": "^3.5.0",
"@types/bun": "^1.3.14"
}
}