mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
28 lines
729 B
JSON
28 lines
729 B
JSON
{
|
|
"name": "bknd",
|
|
"private": true,
|
|
"sideEffects": false,
|
|
"type": "module",
|
|
"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 ./app"
|
|
},
|
|
"dependencies": {},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.4",
|
|
"@tsconfig/strictest": "^2.0.5",
|
|
"@types/lodash-es": "^4.17.12",
|
|
"bun-types": "^1.1.18",
|
|
"miniflare": "^3.20240806.0",
|
|
"typescript": "^5.5.3",
|
|
"verdaccio": "^5.32.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"workspaces": ["app", "packages/*"]
|
|
}
|