UNPKG

@fedify/postgres

Version:

PostgreSQL drivers for Fedify

90 lines 2.16 kB
{ "name": "@fedify/postgres", "version": "1.9.2", "description": "PostgreSQL drivers for Fedify", "keywords": [ "fedify", "postgresql", "postgres" ], "license": "MIT", "author": { "name": "Hong Minhee", "email": "hong@minhee.org", "url": "https://hongminhee.org/" }, "homepage": "https://fedify.dev/", "repository": { "type": "git", "url": "git+https://github.com/fedify-dev/fedify.git", "directory": "packages/postgres" }, "bugs": { "url": "https://github.com/fedify-dev/fedify/issues" }, "funding": [ "https://opencollective.com/fedify", "https://github.com/sponsors/dahlia" ], "type": "module", "main": "./dist/mod.cjs", "module": "./dist/mod.js", "types": "./dist/mod.d.ts", "exports": { ".": { "types": { "import": "./dist/mod.d.ts", "require": "./dist/mod.d.cts", "default": "./dist/mod.d.ts" }, "import": "./dist/mod.js", "require": "./dist/mod.cjs", "default": "./dist/mod.js" }, "./kv": { "types": { "import": "./dist/kv.d.ts", "require": "./dist/kv.d.cts", "default": "./dist/kv.d.ts" }, "import": "./dist/kv.js", "require": "./dist/kv.cjs", "default": "./dist/kv.js" }, "./mq": { "types": { "import": "./dist/mq.d.ts", "require": "./dist/mq.d.cts", "default": "./dist/mq.d.ts" }, "import": "./dist/mq.js", "require": "./dist/mq.cjs", "default": "./dist/mq.js" }, "./package.json": "./package.json" }, "files": [ "dist", "package.json", "README.md" ], "dependencies": { "@js-temporal/polyfill": "^0.5.1", "@logtape/logtape": "^1.1.1" }, "peerDependencies": { "postgres": "^3.4.7", "@fedify/fedify": "^1.9.2" }, "devDependencies": { "@std/async": "npm:@jsr/std__async@^1.0.13", "tsdown": "^0.12.9", "typescript": "^5.9.2" }, "scripts": { "build": "tsdown", "prepublish": "tsdown", "test": "tsdown && node --experimental-transform-types --test", "test:bun": "tsdown && bun test --timeout=10000" } }