dynamic-orm
Version:
A flexible and powerful dynamic ORM for SQL databases with Redis caching support and many-to-many relationship handling
52 lines (51 loc) • 1.06 kB
JSON
{
"name": "dynamic-orm",
"version": "1.2.1",
"description": "A flexible and powerful dynamic ORM for SQL databases with Redis caching support and many-to-many relationship handling",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dynamic-orm-init": "scripts/init.js"
},
"files": [
"dist",
"scripts",
"README.md",
"SUMMARY.md",
"migration-guide.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build",
"init": "node scripts/init.js"
},
"keywords": [
"orm",
"database",
"sql",
"redis",
"caching",
"dynamic",
"many-to-many",
"relationships",
"junction",
"pivot-table"
],
"author": "DynamicORM Team",
"license": "MIT",
"dependencies": {
"uuid": "^9.0.0"
},
"peerDependencies": {
"redis": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/uuid": "^9.0.1",
"jest": "^29.5.0",
"ts-jest": "^29.2.6",
"typescript": "^5.0.4"
}
}