@naturalcycles/db-lib
Version:
Lowest Common Denominator API to supported Databases
69 lines • 1.63 kB
JSON
{
"name": "@naturalcycles/db-lib",
"type": "module",
"version": "10.39.0",
"dependencies": {
"@naturalcycles/js-lib": "^15",
"@naturalcycles/nodejs-lib": "^15"
},
"devDependencies": {
"@naturalcycles/dev-lib": "18.4.2"
},
"files": [
"dist",
"src",
"!src/test",
"!src/**/*.test.ts",
"!src/**/__snapshots__",
"!src/**/__exclude"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./testing": "./dist/testing/index.js",
"./validation": "./dist/validation/index.js",
"./pipeline": "./dist/pipeline/index.js",
"./kv": "./dist/kv/index.js",
"./dao": "./dist/commondao/index.js",
"./cachedb": "./dist/adapter/cachedb/index.js",
"./file": "./dist/adapter/file/index.js",
"./inmemory": "./dist/inmemory/index.js",
"./inmemory/*": "./dist/inmemory/*.js"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:NaturalCycles/js-libs.git",
"directory": "packages/db-lib"
},
"engines": {
"node": ">=24.10.0"
},
"description": "Lowest Common Denominator API to supported Databases",
"keywords": [
"db",
"lib",
"lowest",
"common",
"denominator",
"api",
"database",
"datastore",
"firestore",
"mysql"
],
"author": "Natural Cycles Team",
"license": "MIT",
"scripts": {
"build": "dev-lib build",
"test": "dev-lib test",
"lint": "dev-lib lint",
"bt": "dev-lib bt",
"clean": "dev-lib clean",
"typecheck": "dev-lib typecheck",
"check": "dev-lib check"
}
}