UNPKG

@prisma/ppg

Version:

Lightweight client for Prisma Postgres

66 lines 1.46 kB
{ "name": "@prisma/ppg", "version": "1.0.1", "description": "Lightweight client for Prisma Postgres", "repository": { "type": "git", "url": "https://github.com/prisma/ppg-client" }, "keywords": [ "prisma", "postgres", "postgresql", "ppg", "database", "client", "sql", "serverless", "edge", "http", "websocket" ], "license": "Apache-2.0", "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.ts", "default": "./dist/index.cjs" }, "default": "./dist/index.js" } }, "files": [ "dist" ], "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/busboy": "^1.5.4", "@types/node": "^22.15.18", "@types/ws": "^8.18.1", "@vitest/coverage-v8": "^4.0.5", "@vitest/ui": "^4.0.5", "busboy": "^1.6.0", "tsup": "^8.4.0", "typescript": "^5.8.3", "vitest": "^4.0.5" }, "dependencies": { "ws": "^8.18.3" }, "scripts": { "build": "tsup src/index.ts --format esm,cjs --dts --target node18 --out-dir dist", "format": "biome check --write", "test": "vitest run", "test:watch": "vitest", "test:ui": "vitest --ui", "test:coverage": "vitest run --coverage" } }