{
    "name": "@200systems/mf-db-core",
    "version": "1.1.6",
    "description": "Core database interfaces and types for the TypeScript microframework",
    "type": "module",
    "main": "./dist/index.js",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "import": "./dist/index.js",
            "require": "./dist/index.js",
            "types": "./dist/index.d.ts"
        }
    },
    "files": [
        "dist/**/*",
        "README.md",
        "LICENSE"
    ],
    "scripts": {
        "build": "tsc",
        "dev": "tsc --watch",
        "clean": "rm -rf dist *.tsbuildinfo",
        "lint": "eslint src/**/*.ts",
        "lint:fix": "eslint src/**/*.ts --fix"
    },
    "keywords": [
        "typescript",
        "database",
        "interfaces",
        "microframework",
        "postgresql",
        "mysql",
        "migrations"
    ],
    "author": "Cleiton Marques <cleiton.marques@200.systems>",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/200Systems/bitbrick-microframework.git",
        "directory": "packages/db-core"
    },
    "dependencies": {
        "@200systems/mf-logger": "^1.0.0"
    },
    "devDependencies": {
        "@types/node": "^20.10.0",
        "typescript": "^5.8.3"
    },
    "engines": {
        "node": ">=18.0.0"
    },
    "publishConfig": {
        "access": "public"
    }
}
