{
  "name": "dioma",
  "version": "0.4.6",
  "description": "Elegant dependency injection container for vanilla JavaScript and TypeScript",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git@github.com:zheksoon/dioma.git"
  },
  "homepage": "https://github.com/zheksoon/dioma",
  "author": {
    "name": "Eugene Daragan",
    "email": "zheksoon@gmail.com"
  },
  "keywords": [
    "di",
    "dependency injection",
    "di container",
    "inversion of control",
    "ioc",
    "ioc container",
    "javascript",
    "typescript",
    "dioma",
    "inversify",
    "awilix",
    "tsyringe"
  ],
  "type": "module",
  "main": "dist/dioma.js",
  "module": "dist/dioma.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.ts",
        "default": "./dist/dioma.js"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/dioma.cjs"
      }
    }
  },
  "files": [
    "src",
    "dist",
    "README.md",
    "LICENSE",
    "package.json"
  ],
  "scripts": {
    "build": "vite build --minify=false --sourcemap=true && cp dist/index.d.ts dist/index.d.cts",
    "test": "vitest",
    "test:coverage": "vitest --coverage"
  },
  "devDependencies": {
    "@vitest/coverage-v8": "^1.4.0",
    "vite": "^5.2.7",
    "vitest": "^1.4.0",
    "vite-plugin-dts": "^3.8.1"
  }
}
