{ "name": "patch-db", "version": "1.0.0", "description": "observable db based on json-patch", "author": "Start9 Labs, Inc", "license": "MIT", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "check": "tsc --noEmit --skipLibCheck" }, "dependencies": { "sorted-btree": "1.5.0", "uuid": "8.3.2" }, "peerDependencies": { "rxjs": ">=7.0.0" }, "devDependencies": { "@types/node": "22.15.19", "@types/uuid": "8.3.1", "husky": "^4.3.8", "lint-staged": "^13.2.0", "prettier": "^3.5.3", "ts-node": "^10.9.0", "tslint": "6.1.3", "typescript": "^5.8.3" }, "husky": { "hooks": { "pre-commit": "lint-staged && npm run check" } }, "lint-staged": { "**/*.{js,ts,html,md,less,json}": "prettier --write", "*.ts": "tslint --fix" } }