fsdb/deno.json

53 lines
1.2 KiB
JSON
Raw Normal View History

2025-06-13 20:40:28 -07:00
{
"name": "@andyburke/fsdb",
2025-11-06 22:00:27 -08:00
"version": "1.2.2",
2025-06-13 20:40:28 -07:00
"license": "MIT",
"exports": {
".": "./fsdb.ts",
"./cli": "./cli.ts",
"./indexers": "./indexers.ts",
"./organizers": "./organizers.ts"
2025-06-13 20:40:28 -07:00
},
"tasks": {
"lint": "deno lint",
"fmt": "deno fmt",
2025-07-01 19:14:18 -07:00
"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 ./",
2025-06-13 20:40:28 -07:00
"fsdb": "deno run --allow-env --allow-read --allow-write cli.ts"
},
"fmt": {
"include": [
"**/*.ts"
],
2025-06-13 20:40:28 -07:00
"options": {
"useTabs": true,
"lineWidth": 140,
"indentWidth": 4,
"singleQuote": true,
"proseWrap": "preserve",
"trailingCommas": "never"
}
},
"lint": {
"include": [
"**/*.ts"
],
2025-06-13 20:40:28 -07:00
"rules": {
"tags": [
"recommended"
],
"exclude": [
"no-explicit-any"
]
2025-06-13 20:40:28 -07:00
}
},
"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"
}
}