Files
db/deno.json
2026-01-07 02:34:18 +01:00

46 lines
1.2 KiB
JSON
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{
"name": "@valkyr/db",
"version": "3.0.2",
"exports": {
".": "./src/mod.ts"
},
"publish": {
"exclude": [".github", ".vscode", ".gitignore", "tests"]
},
"tasks": {
"check": {
"description": "Run formatting/linting with Biome and type-check the source code with Deno.",
"dependencies": ["check:biome", "check:deno"]
},
"check:biome": {
"command": "deno run -A npm:@biomejs/biome@2.3.10 check --write ./src",
"description": "Format, lint, and organize imports in the src directory using Biome."
},
"check:deno": {
"command": "deno check ./src",
"description": "Perform full TypeScript type-checking on the src directory."
},
"test": {
"command": "deno test --allow-all",
"description": "Run all tests using Denos built-in test runner."
},
"test:publish": {
"command": "deno publish --dry-run",
"description": "Validate that the package can be published without errors."
},
"ncu": {
"command": "npx npm-check-updates -u -p npm",
"description": "Update npm dependencies in package.json to their latest compatible versions."
}
},
"compilerOptions": {
"lib": ["deno.window", "dom"]
},
"nodeModulesDir": "auto"
}