UNPKG

@mobtakronio/schemakit

Version:

Dynamic entity management system with runtime schema creation, validation, and CRUD operations for Node.js backends.

87 lines 1.97 kB
{ "name": "@mobtakronio/schemakit", "version": "0.2.6", "description": "Dynamic entity management system with runtime schema creation, validation, and CRUD operations for Node.js backends.", "main": "dist/index.mjs", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "sql", "README.md" ], "keywords": [ "schema", "entity", "validation", "dynamic", "database", "orm", "crud", "typescript", "sqlite", "postgres", "zero-dependencies", "runtime-schema", "entity-management" ], "author": "MobtakronIO", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/MobtakronIO/schemakit.git" }, "homepage": "https://github.com/MobtakronIO/schemakit#readme", "bugs": { "url": "https://github.com/MobtakronIO/schemakit/issues" }, "engines": { "node": ">=14.0.0" }, "publishConfig": { "access": "public" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^18.19.119", "@types/pg": "^8.15.4", "@typescript-eslint/eslint-plugin": "^5.59.0", "@typescript-eslint/parser": "^5.59.0", "eslint": "^8.38.0", "jest": "^29.7.0", "ts-jest": "^29.4.1", "ts-node": "^10.9.2", "tsup": "^8.0.0", "typescript": "^5.9.2" }, "peerDependencies": { "better-sqlite3": ">=9.0.0", "drizzle-orm": ">=0.29.0", "mysql2": ">=3.0.0", "pg": ">=8.0.0" }, "peerDependenciesMeta": { "drizzle-orm": { "optional": true }, "pg": { "optional": true }, "better-sqlite3": { "optional": true }, "mysql2": { "optional": true } }, "scripts": { "build": "tsup", "dev": "tsup --watch", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src --ext .ts", "lint:fix": "eslint src --ext .ts --fix", "typecheck": "tsc --noEmit" } }