@worker-tools/deno-kv-storage
Version:
An implementation of the StorageArea (1,2,3) interface for Deno with an extensible system for supporting various database backends.
55 lines • 1.5 kB
JSON
{
"module": "./esm/mod.js",
"main": "./script/mod.js",
"name": "@worker-tools/deno-kv-storage",
"version": "0.6.0-pre.1",
"description": "An implementation of the StorageArea (1,2,3) interface for Deno with an extensible system for supporting various database backends.",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"author": "Florian Klampfer <mail@qwtel.com> (https://qwtel.com/)",
"repository": {
"type": "git",
"url": "git+https://github.com/worker-tools/deno-kv-storage.git"
},
"bugs": {
"url": "https://github.com/worker-tools/deno-kv-storage/issues"
},
"homepage": "https://workers.tools/deno-kv-storage",
"keywords": [
"deno",
"kv-storage",
"sqlite",
"storage",
"storagearea"
],
"exports": {
".": {
"import": "./esm/mod.js",
"require": "./script/mod.js"
},
"./sqlite": {
"import": "./esm/sqlite.js",
"require": "./script/sqlite.js"
},
"./adapters/sqlite": {
"import": "./esm/adapters/sqlite.js",
"require": "./script/adapters/sqlite.js"
},
"./postgres": {
"import": "./esm/postgres.js",
"require": "./script/postgres.js"
},
"./adapters/postgres": {
"import": "./esm/adapters/postgres.js",
"require": "./script/adapters/postgres.js"
}
},
"dependencies": {
"@worker-tools/structured-json": "latest",
"idb-key-to-string": "latest",
"kv-storage-interface": "latest"
},
"devDependencies": {}
}