feature: initial commit
This commit is contained in:
commit
ce024ba87a
17 changed files with 1141 additions and 0 deletions
44
deno.json
Normal file
44
deno.json
Normal file
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"name": "@andyburke/fsdb",
|
||||
"version": "0.0.2",
|
||||
"license": "MIT",
|
||||
"exports": {
|
||||
".": "./fsdb.ts",
|
||||
"./cli": "./cli.ts"
|
||||
},
|
||||
|
||||
"tasks": {
|
||||
"lint": "deno lint",
|
||||
"fmt": "deno fmt",
|
||||
"test": "cd tests && DENO_ENV=test 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"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue