UNPKG

@pardnchiu/mysql-pool

Version:

A MySQL connection pool solution designed specifically for Node.js, featuring intuitive chaining syntax that integrates query builder capabilities with read-write separation.

65 lines 1.66 kB
{ "name": "@pardnchiu/mysql-pool", "description": "A MySQL connection pool solution designed specifically for Node.js, featuring intuitive chaining syntax that integrates query builder capabilities with read-write separation.", "version": "0.1.5", "main": "dist/index.js", "types": "dist/index.d.ts", "publishConfig": { "access": "public" }, "files": [ "dist/", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "build:watch": "tsc --watch", "clean": "rm -rf dist", "prebuild": "npm run clean", "prepublishOnly": "npm run build", "postpublish": "npm run clean", "test": "jest", "test:watch": "jest --watch", "dev": "ts-node src/index.ts", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix" }, "keywords": [ "typescript", "mysql2", "chain-syntax", "mysql", "邱敬幃", "pardnchiu" ], "author": "Pardn Chiu", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/pardnchiu/nodejs-mysql-pool.git" }, "bugs": { "url": "https://github.com/pardnchiu/nodejs-mysql-pool/issues" }, "homepage": "https://github.com/pardnchiu/nodejs-mysql-pool#readme", "dependencies": { "mysql2": "^3.14.1" }, "devDependencies": { "@types/node": "^22.15.21", "@types/jest": "^29.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "typescript": "^5.0.0", "ts-node": "^10.9.0", "jest": "^29.0.0", "eslint": "^8.0.0" }, "peerDependencies": { "mysql2": "^3.14.1" }, "engines": { "node": ">=20.0.0" } }