{
  "name": "@stonyx/orm",
  "keywords": [
    "stonyx-async",
    "stonyx-module"
  ],
  "version": "0.3.1",
  "description": "",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "stonyx-orm": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./db": {
      "types": "./dist/exports/db.d.ts",
      "default": "./dist/exports/db.js"
    },
    "./standalone-db": {
      "types": "./dist/standalone-db.d.ts",
      "default": "./dist/standalone-db.js"
    },
    "./migrate": {
      "types": "./dist/migrate.d.ts",
      "default": "./dist/migrate.js"
    },
    "./commands": {
      "types": "./dist/commands.d.ts",
      "default": "./dist/commands.js"
    },
    "./hooks": {
      "types": "./dist/hooks.d.ts",
      "default": "./dist/hooks.js"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/abofs/stonyx-orm.git"
  },
  "author": "Stone Costa",
  "license": "Apache-2.0",
  "contributors": [
    "Stone Costa <stone.costa@synamicd.com>"
  ],
  "files": [
    "dist",
    "src",
    "config",
    "README.md"
  ],
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "bugs": {
    "url": "https://github.com/abofs/stonyx-orm/issues"
  },
  "homepage": "https://github.com/abofs/stonyx-orm#readme",
  "dependencies": {
    "@stonyx/cron": "0.2.1-beta.29",
    "@stonyx/events": "0.1.1-beta.9",
    "stonyx": "0.2.3-beta.11"
  },
  "peerDependencies": {
    "@stonyx/rest-server": ">=0.2.1-beta.14",
    "mysql2": "^3.0.0",
    "pg": "^8.0.0"
  },
  "peerDependenciesMeta": {
    "mysql2": {
      "optional": true
    },
    "pg": {
      "optional": true
    },
    "@stonyx/rest-server": {
      "optional": true
    }
  },
  "devDependencies": {
    "@stonyx/rest-server": "0.2.1-beta.30",
    "@stonyx/utils": "0.2.3-beta.7",
    "@types/node": "^25.6.0",
    "mysql2": "^3.20.0",
    "pg": "^8.20.0",
    "qunit": "^2.24.1",
    "sinon": "^21.0.0",
    "typescript": "^5.8.3"
  },
  "scripts": {
    "build": "tsc",
    "build:test": "tsc -p tsconfig.test.json",
    "test": "npm run build && npm run build:test && stonyx test 'dist-test/test/**/*-test.js'"
  }
}