UNPKG

zumito-db

Version:

Multi-driver database abstraction layer with decorator-based models

55 lines (54 loc) 1.06 kB
{ "name": "zumito-db", "version": "2.1.0", "description": "Multi-driver database abstraction layer with decorator-based models", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "scripts": { "test": "vitest run", "test:watch": "vitest", "build": "tsc", "build-watch": "tsc -w" }, "author": "ZumitoTeam", "repository": { "type": "git", "url": "https://github.com/ZumitoTeam/zumito-db.git" }, "license": "ISC", "dependencies": { "mongodb": "^6.3.0", "reflect-metadata": "^0.2.2" }, "peerDependencies": { "better-sqlite3": "*", "tingodb": "*" }, "peerDependenciesMeta": { "better-sqlite3": { "optional": true }, "tingodb": { "optional": true } }, "devDependencies": { "@types/better-sqlite3": "^7.6.12", "vitest": "^1.6.1", "typescript": "^5.8.3" }, "type": "module", "exports": { ".": "./dist/index.js" }, "typesVersions": { "*": { ".": [ "dist/index.d.ts" ] } } }