Files
bknd/package.json
T
Jonas Perusquia Morales 4afba215b9 chore: update devDependencies for improved compatibility
- bump @tsconfig/strictest from 2.0.7 to 2.0.8
- upgrade typescript from 5.9.3 to 6.0.2
2026-03-24 13:48:42 -06:00

29 lines
772 B
JSON

{
"name": "bknd",
"private": true,
"sideEffects": false,
"type": "module",
"packageManager": "bun@1.3.3",
"engines": {
"node": ">=22.13"
},
"scripts": {
"updater": "bun x npm-check-updates -ui",
"ci": "find . -name 'node_modules' -type d -exec rm -rf {} + && bun install",
"npm:local": "verdaccio --config verdaccio.yml",
"format": "bunx biome format --write ./app",
"lint": "bunx biome lint --changed --write ./app"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"@tsconfig/strictest": "^2.0.8",
"@types/bun": "^1.3.1",
"@types/lodash-es": "^4.17.12",
"miniflare": "^3.20250718.2",
"typescript": "^6.0.2",
"verdaccio": "^6.2.1"
},
"workspaces": ["app", "packages/*"]
}