orm-postgresql
Version:
Um ORM TypeScript para PostgreSQL com funcionalidades semelhantes ao Entity Framework e suporte a LINQ-like queries.
44 lines (43 loc) • 1.02 kB
JSON
{
"name": "orm-postgresql",
"version": "1.0.2",
"description": "Um ORM TypeScript para PostgreSQL com funcionalidades semelhantes ao Entity Framework e suporte a LINQ-like queries.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"keywords": [
"orm",
"postgresql",
"typescript",
"linq",
"entity-framework"
],
"author": "dcutiyamo@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Utiyamo/ORM-PostgreSQL.git"
},
"bugs": {
"url": "https://github.com/Utiyamo/ORM-PostgreSQL/issues"
},
"homepage": "https://github.com/Utiyamo/ORM-PostgreSQL#readme",
"dependencies": {
"pg": "^8.13.3",
"reflect-metadata": "^0.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"@types/pg": "^8.11.11",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}