UNPKG

@filtron/sql

Version:

SQL WHERE clause generator for Filtron AST with parameterized queries

73 lines (72 loc) 1.77 kB
{ "$schema": "https://json.schemastore.org/package.json", "name": "@filtron/sql", "version": "1.0.0", "description": "SQL WHERE clause generator for Filtron AST with parameterized queries", "keywords": [ "filtron", "sql", "where-clause", "query-builder", "ast", "typescript", "duckdb", "postgresql", "mysql", "sqlite" ], "homepage": "https://github.com/jbergstroem/filtron#readme", "bugs": { "url": "https://github.com/jbergstroem/filtron/issues" }, "repository": { "type": "git", "url": "git+https://github.com/jbergstroem/filtron.git", "directory": "packages/sql" }, "license": "MIT", "author": "Johan Bergström <bugs@bergstroem.nu>", "type": "module", "exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } }, "main": "./dist/index.js", "module": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "bench": "bun --expose-gc run benchmark.ts", "build": "rm -rf dist && bun build --minify --splitting --outdir=dist --external @filtron/core index.ts && tsc -p tsconfig.build.json", "lint": "oxlint --type-aware && oxfmt", "prepublishOnly": "bun run build && bun test", "test": "bun test" }, "peerDependencies": { "@filtron/core": "1.0.0", "typescript": ">=5.0.0" }, "peerDependenciesMeta": { "typescript": { "optional": true } }, "devDependencies": { "@filtron/core": "1.0.0", "@types/bun": "1.3.2", "mitata": "1.0.34", "typescript": "5.9.3" }, "engines": { "node": ">=20.0.0", "bun": ">=1.1.0" }, "packageManager": "bun@1.3.2" }