{
  "name": "mongo-object",
  "version": "3.0.4",
  "description": "An API for interacting with a MongoDB document or modifier",
  "author": "Eric Dobbertin <eric@dairystatedesigns.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/longshotlabs/mongo-object.git"
  },
  "bugs": {
    "url": "https://github.com/longshotlabs/mongo-object/issues"
  },
  "homepage": "https://github.com/longshotlabs/mongo-object",
  "type": "module",
  "files": [
    "dist",
    "LICENSE",
    "README.md"
  ],
  "main": "./dist/cjs/main.js",
  "module": "./dist/esm/main.js",
  "types": "./dist/esm/main.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/main.js",
      "require": "./dist/cjs/main.js"
    }
  },
  "engines": {
    "node": ">=20"
  },
  "browserslist": "> 0.5%, last 2 versions, Firefox ESR, not dead",
  "scripts": {
    "build": "rm -rf dist/** && tsc -p tsconfig-esm-build.json && tsc -p tsconfig-cjs-build.json && ./scripts/post-build.sh",
    "check": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "prepublishOnly": "npm run build",
    "test": "node --import tsx --test",
    "test:watch": "npm test -- --watch"
  },
  "devDependencies": {
    "@types/node": "^22",
    "@typescript-eslint/eslint-plugin": "^5.30.7",
    "@typescript-eslint/parser": "^5.30.7",
    "eslint": "^8.20.0",
    "eslint-config-standard-with-typescript": "^22.0.0",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^6.0.0",
    "eslint-plugin-redos": "^4.5.0",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "eslint-plugin-you-dont-need-lodash-underscore": "^6.14.0",
    "semantic-release": "^25.0.3",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3"
  },
  "release": {
    "branches": [
      "main"
    ],
    "plugins": [
      "@semantic-release/commit-analyzer",
      "@semantic-release/release-notes-generator",
      "@semantic-release/npm",
      [
        "@semantic-release/github",
        {
          "successComment": ":tada: This ${issue.pull_request ? 'PR is included' : 'issue has been resolved'} in version ${nextRelease.version} :tada:\n\nThe release is available on:\n- [npm package (@latest dist-tag)](https://www.npmjs.com/package/mongo-object/v/${nextRelease.version})\n- [GitHub release](https://github.com/longshotlabs/mongo-object/releases/tag/${nextRelease.version})\n\nIf this makes you happy, please consider [becoming a sponsor](https://github.com/sponsors/aldeed).\n\nYour **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:"
        }
      ]
    ],
    "tagFormat": "${version}"
  },
  "publishConfig": {
    "access": "public"
  }
}
