kysely-prisma-postgres
Version:
Prisma Postgres (PPG) dialect for Kysely
70 lines • 1.54 kB
JSON
{
"name": "kysely-prisma-postgres",
"version": "0.1.0",
"description": "Prisma Postgres (PPG) dialect for Kysely",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"keywords": [
"prisma",
"postgres",
"ppg",
"pg",
"serverless",
"http",
"api",
"kysely",
"query builder",
"sql",
"typescript",
"database",
"type-safe",
"dialect"
],
"author": "Igal Klebanov <igalklebanov@gmail.com> (https://github.com/igalklebanov)",
"license": "MIT",
"repository": "git://github.com/kysely-org/kysely-prisma-postgres.git",
"homepage": "https://kysely.dev",
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@biomejs/biome": "^2.2.2",
"@prisma/ppg": "^0.5.2",
"@tsconfig/node24": "^24.0.1",
"@types/node": "^24.3.0",
"kysely": "^0.28.5",
"std-env": "^3.9.0",
"tsup": "^8.5.0",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@prisma/ppg": "^0.5",
"kysely": "^0.28"
},
"engines": {
"node": ">=20"
},
"scripts": {
"biome": "biome",
"build": "tsup",
"check:exports": "attw . --pack",
"check:types": "tsc --noEmit",
"test": "vitest"
}
}