fsdb/deno.json
Andy Burke 05178c924f refactor: make all() take filter and sort options
refactor: return unload item entries from all()/find()
2025-07-02 17:46:04 -07:00

46 lines
1.1 KiB
JSON

{
"name": "@andyburke/fsdb",
"version": "0.8.0",
"license": "MIT",
"exports": {
".": "./fsdb.ts",
"./cli": "./cli.ts",
"./indexers": "./indexers.ts",
"./organizers": "./organizers.ts"
},
"tasks": {
"lint": "deno lint",
"fmt": "deno fmt",
"test": "cd tests && DENO_ENV=test FSDB_TEST_DATA_STORAGE_ROOT=./data/$(date --iso-8601=seconds) deno test --allow-env --allow-read --allow-write --fail-fast --trace-leaks ./",
"fsdb": "deno run --allow-env --allow-read --allow-write cli.ts"
},
"fmt": {
"include": ["**/*.ts"],
"options": {
"useTabs": true,
"lineWidth": 140,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "preserve",
"trailingCommas": "never"
}
},
"lint": {
"include": ["**/*.ts"],
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"imports": {
"@andyburke/lurid": "jsr:@andyburke/lurid@^0.2.0",
"@ndaidong/txtgen": "jsr:@ndaidong/txtgen@^4.0.1",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/cli": "jsr:@std/cli@^1.0.20",
"@std/crypto": "jsr:@std/crypto@^1.0.5",
"@std/fs": "jsr:@std/fs@^1.0.18",
"@std/path": "jsr:@std/path@^1.1.0"
}
}