sql-string-qb
Version:
A simple JavaScript/TypeScript library for assembling complex SQL queries. Miniscule, type-safe, and dependency-free.
47 lines (46 loc) • 1.07 kB
JSON
{
"name": "sql-string-qb",
"version": "0.2.7",
"description": "A simple JavaScript/TypeScript library for assembling complex SQL queries. Miniscule, type-safe, and dependency-free.",
"homepage": "https://github.com/jhuntdev/sql-string-qb",
"keywords": [
"qb",
"sql",
"mysql",
"mssql",
"oracle",
"postgres",
"query builder",
"javascript",
"typescript",
"nodejs",
"node.js",
"deno",
"bun"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jhuntdev/sql-string-qb"
},
"scripts": {
"build" : "tsc -b && rollup dist/index.js --format=cjs --file=dist/index.cjs && rm dist/tsconfig.tsbuildinfo",
"watch": "tsc -w",
"test": "mocha ./test"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"author": "JHunt <hello@jhunt.dev>",
"license": "MIT",
"devDependencies": {
"mocha": "11.0.1",
"rollup": "4.28.1",
"typescript": "5.7.2"
}
}