queryforge
Version:
A powerful, type-safe SQL query builder for Node.js with support for MySQL, PostgreSQL, and SQLite. Features fluent API, transaction management, and connection pooling.
85 lines (84 loc) • 2.27 kB
JSON
{
"name": "queryforge",
"version": "0.1.3",
"description": "A powerful, type-safe SQL query builder for Node.js with support for MySQL, PostgreSQL, and SQLite. Features fluent API, transaction management, and connection pooling.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"clean": "rimraf dist",
"docs": "typedoc --out docs src",
"format": "prettier --write \"src/**/*.ts\"",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"sql",
"query-builder",
"database",
"orm",
"typescript",
"mysql",
"postgresql",
"sqlite",
"nodejs",
"database-management",
"sql-query-builder",
"type-safe",
"fluent-api",
"transaction-management",
"connection-pooling",
"prepared-statements",
"parameterized-queries"
],
"author": {
"name": "Melih Kuru",
"url": "https://github.com/kurumelih"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/kurumelih/queryforge.git"
},
"bugs": {
"url": "https://github.com/kurumelih/queryforge/issues"
},
"homepage": "https://github.com/kurumelih/queryforge#readme",
"dependencies": {
"mysql2": "^3.6.5",
"pg": "^8.11.3",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.10.6",
"@types/pg": "^8.10.9",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"dist/**/*",
"LICENSE",
"README.md",
"CHANGELOG.md"
]
}