30 lines
789 B
JSON
30 lines
789 B
JSON
{
|
|
"name": "@valkyr/db",
|
|
"version": "2.1.0",
|
|
"exports": {
|
|
".": "./src/mod.ts"
|
|
},
|
|
"publish": {
|
|
"exclude": [".github", ".vscode", ".gitignore", "tests"]
|
|
},
|
|
"tasks": {
|
|
"check": {
|
|
"command": "deno run -A npm:@biomejs/biome check --write ./src",
|
|
"description": "Format, lint, and organize imports of the entire project."
|
|
},
|
|
"test": {
|
|
"command": "deno test --allow-all",
|
|
"description": "Runs all defined tests across the entire project."
|
|
},
|
|
"test:publish": "deno publish --dry-run",
|
|
"ncu": {
|
|
"command": "npx ncu -u -p npm",
|
|
"description": "Updates all the dependencies in package.json to their latest versions."
|
|
}
|
|
},
|
|
"compilerOptions": {
|
|
"lib": ["deno.window", "dom"]
|
|
},
|
|
"nodeModulesDir": "auto"
|
|
}
|