feat: 2.0.0 beta release

This commit is contained in:
2025-08-14 23:55:04 +02:00
parent 2eba1475c5
commit fab3476515
71 changed files with 2171 additions and 8936 deletions

19
deno.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "@valkyr/db",
"version": "2.0.0-beta.1",
"exports": {
".": "./src/mod.ts"
},
"publish": {
"exclude": [".github", ".vscode", ".gitignore", "tests"]
},
"tasks": {
"check": "deno check ./src/mod.ts",
"lint": "npx eslint -c eslint.config.mjs --fix .",
"fmt": "npx prettier --write .",
"test": "deno test --allow-all",
"test:publish": "deno publish --dry-run",
"ncu": "npx ncu -u -p npm"
},
"nodeModulesDir": "auto"
}