{
  "name": "@organify/di",
  "version": "1.0.3",
  "description": "A powerful TypeScript dependency injection library with decorators, auto-registration, and advanced features",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "exports": {
    ".": "./dist/index.js"
  },
  "engines": {
    "node": ">=18.17"
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "dev": "npm run build -- --watch",
    "test": "node --test",
    "clean": "rimraf dist",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "dependency-injection",
    "typescript",
    "decorators",
    "reflect-metadata",
    "di",
    "ioc",
    "inversion-of-control",
    "auto-registration",
    "scopes",
    "lifecycle"
  ],
  "author": "Shyam Peshavariya",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "reflect-metadata": "^0.2.2"
  },
  "devDependencies": {
    "@types/node": "^20.14.9",
    "rimraf": "^6.0.1",
    "typescript": "^5.5.4"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/organify/di.git"
  },
  "bugs": {
    "url": "https://github.com/organify/di/issues"
  },
  "homepage": "https://github.com/organify/di#readme"
}
