UNPKG

@200systems/mf-db-mysql

Version:

MySQL database client with connection pooling, migrations, and health monitoring

62 lines (61 loc) 1.57 kB
{ "name": "@200systems/mf-db-mysql", "version": "1.1.7", "description": "MySQL database client with connection pooling, migrations, and health monitoring", "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", "mysql", "database", "migrations", "connection-pooling", "microframework", "health-monitoring" ], "author": "Cleiton Marques <cleiton.marques@200.systems>", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/200Systems/bitbrick-microframework.git", "directory": "packages/db-mysql" }, "dependencies": { "@200systems/mf-logger": "^1.0.0", "@200systems/mf-db-core": "^1.0.0" }, "peerDependencies": { "mysql2": "^3.6.0" }, "devDependencies": { "@types/node": "^20.10.0", "mysql2": "^3.6.0", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "publishConfig": { "access": "public" } }