You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "KeePass Web — source monorepo. Builds self-contained HTML distributables for a KDBX password manager that runs entirely in the browser.",
"license": "MIT",
"workspaces": [
"packages/*",
"tools/build",
"pages",
"e2e"
],
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@types/node": "^22.20.0",
"typescript": "6.0.3"
},
"scripts": {
"clean": "rm -rf build dist",
"build:deps": "npm run build --workspace=argon2 --workspace=chacha20 --workspace=kdbx --workspace=router --workspace=embed-protocol",
"build": "npm run build:deps && npm run build --workspace=pages",
"typecheck": "npm run build:deps && npm run typecheck --workspaces --if-present && tsc --noEmit -p tools/serve-dist/tsconfig.json",
"lint": "biome check .",
"format": "biome format --write .",
"test": "npm run build:deps && npm run test --workspaces --if-present",
"test:e2e": "npm run build && npm run test:e2e --workspace=e2e",
"serve": "npm run build && node --experimental-strip-types tools/serve-dist/index.ts"