{
  "name": "@evyweb/ioctopus",
  "version": "1.2.0",
  "description": "A simple IoC container for JavaScript and TypeScript for classes and functions.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "lint": "tsc --noEmit",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "changeset": "npx changeset",
    "changeset:version": "npx changeset version",
    "publish:package": "npm run build && npx changeset publish"
  },
  "keywords": [
    "ioc",
    "inversion of control",
    "dependency injection",
    "dependency inversion",
    "typescript",
    "inversify",
    "typescript-ioc",
    "tsyringe",
    "di"
  ],
  "author": "Evyweb",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Evyweb/ioctopus.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@changesets/cli": "^2.27.10",
    "@types/node": "^22.10.1",
    "@vitest/coverage-v8": "^2.1.8",
    "jest-extended": "^4.0.2",
    "ts-node": "^10.9.2",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^2.1.8",
    "vitest-mock-extended": "^2.0.2"
  }
}
