UNPKG

undeexcepturi

Version:

TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.

74 lines (73 loc) 1.79 kB
{ "name": "@mikro-orm/postgresql", "version": "6.1.2", "description": "TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, PostgreSQL and SQLite databases as well as usage with vanilla JavaScript.", "main": "dist/index.js", "module": "dist/index.mjs", "typings": "dist/index.d.ts", "exports": { "./package.json": "./package.json", ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.mjs" }, "require": "./dist/index.js" } }, "repository": { "type": "git", "url": "git+ssh://git@github.com/mikro-orm/mikro-orm.git" }, "keywords": [ "orm", "mongo", "mongodb", "mysql", "mariadb", "postgresql", "sqlite", "sqlite3", "ts", "typescript", "js", "javascript", "entity", "ddd", "mikro-orm", "unit-of-work", "data-mapper", "identity-map" ], "author": "Martin Adámek", "license": "MIT", "bugs": { "url": "https://github.com/mikro-orm/mikro-orm/issues" }, "homepage": "https://mikro-orm.io", "engines": { "node": ">= 18.12.0" }, "scripts": { "build": "yarn clean && yarn compile && yarn copy && yarn run -T gen-esm-wrapper dist/index.js dist/index.mjs", "clean": "yarn run -T rimraf ./dist", "compile": "yarn run -T tsc -p tsconfig.build.json", "copy": "node ../../scripts/copy.mjs" }, "publishConfig": { "access": "public" }, "dependencies": { "@mikro-orm/knex": "^6.1.2", "pg": "8.11.3", "postgres-array": "3.0.2", "postgres-date": "2.1.0", "postgres-interval": "4.0.2" }, "devDependencies": { "@mikro-orm/core": "^6.1.2" }, "peerDependencies": { "@mikro-orm/core": "^6.0.0" } }