@devscast/queryzen
Version:
QueryZen : TypeScript SQL Query Builder inspired by Doctrine DBAL
79 lines (78 loc) • 2.03 kB
JSON
{
"name": "@devscast/queryzen",
"version": "1.1.4",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup --minify",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"============= HUSKY =============": "",
"prepare": "husky",
"commit": "cz",
"=========== CODE STYLE ============": "",
"lint": "biome check && biome lint",
"format": "biome format --write && biome check --write && biome lint --write",
"typecheck": "tsc --noEmit",
"=========== NPM PUBLISH ==============": "",
"release": "npm run build && npm publish --access public",
"version": "changeset version"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"keywords": [
"sql",
"mysql",
"query",
"builder",
"orm",
"dbal"
],
"author": "Bernard Ngandu <bernard@devscast.tech>",
"license": "MIT",
"description": "QueryZen : TypeScript SQL Query Builder inspired by Doctrine DBAL",
"repository": {
"type": "git",
"url": "git+https://github.com/devscast/queryzen-ts.git"
},
"bugs": {
"url": "https://github.com/devscast/queryzen-ts/issues"
},
"homepage": "https://github.com/devscast/queryzen-ts#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@changesets/cli": "^2.29.7",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^24.10.1",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@typescript-eslint/parser": "^8.47.0",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}