{
  "author": "Remo H. Jansen",
  "bugs": {
    "url": "https://github.com/inversify/monorepo/issues"
  },
  "description": "A powerful and lightweight inversion of control container for JavaScript and Node.js apps powered by TypeScript.",
  "dependencies": {
    "@inversifyjs/common": "1.5.2",
    "@inversifyjs/container": "1.15.0",
    "@inversifyjs/core": "9.2.0"
  },
  "devDependencies": {
    "@types/node": "24.10.4",
    "@vitest/coverage-v8": "4.0.16",
    "eslint": "9.39.2",
    "prettier": "3.7.4",
    "reflect-metadata": "0.2.2",
    "rimraf": "6.1.2",
    "rollup": "4.55.1",
    "ts-loader": "9.5.4",
    "tslib": "2.8.1",
    "typescript": "5.9.3",
    "vitest": "4.0.16"
  },
  "homepage": "https://inversify.io",
  "keywords": [
    "dependency injection",
    "dependency inversion",
    "di",
    "inversion of control container",
    "ioc",
    "javascript",
    "node",
    "typescript"
  ],
  "devEngines": {
    "node": "^24.10.0",
    "pnpm": "^10.13.1"
  },
  "license": "MIT",
  "main": "lib/cjs/index.js",
  "module": "lib/esm/index.js",
  "exports": {
    ".": {
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    }
  },
  "name": "inversify",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/inversify/monorepo.git"
  },
  "sideEffects": true,
  "version": "7.11.0",
  "scripts": {
    "build": "pnpm run build:cjs && pnpm run build:esm",
    "build:cjs": "tsc --build tsconfig.cjs.json && pnpm exec foundation-ts-package-cjs ./lib/cjs",
    "build:esm": "rollup -c ./rollup.config.mjs && pnpm exec foundation-ts-package-esm ./lib/esm",
    "build:clean": "rimraf lib",
    "format": "prettier --write ./src",
    "lint": "eslint ./src",
    "prebuild": "pnpm run build:clean",
    "test": "vitest run",
    "test:integration": "pnpm run test --project Integration",
    "test:coverage": "pnpm run test:unit --coverage",
    "test:uncommitted": "pnpm run test --changed=HEAD",
    "test:unit": "pnpm run test --project Unit"
  }
}