UNPKG

@shadow-dev/orm

Version:

Lightweight dynamic MySQL ORM designed for ShadowCore and modular apps.

55 lines (54 loc) 1.33 kB
{ "name": "@shadow-dev/orm", "version": "1.0.3", "description": "Lightweight dynamic MySQL ORM designed for ShadowCore and modular apps.", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": ["dist"], "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" } }, "scripts": { "prepublishOnly": "npm run build", "dev": "ts-node src/index.ts", "build": "tsc", "lint": "eslint . --ext .ts", "type-check": "tsc --noEmit", "setup": "node scripts/setup.js", "test": "jest" }, "repository": { "type": "git", "url": "https://github.com/Shadows-Development/ShadowORM.git" }, "author": "Shadow Development LLC", "license": "LGPL-3.0-or-later", "keywords": [ "orm", "mysql", "typescript", "lightweight", "shadowcore", "shadow-dev" ], "devDependencies": { "@eslint/json": "^0.13.1", "@types/jest": "^30.0.0", "@types/node": "^24.1.0", "@typescript-eslint/eslint-plugin": "^8.38.0", "@typescript-eslint/parser": "^8.38.0", "eslint": "^9.32.0", "jest": "^30.0.5", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "typescript": "^5.8.3", "typescript-eslint": "^8.38.0" }, "dependencies": { "mysql2": "^3.14.3" } }