{
  "name": "inwire",
  "version": "3.0.0",
  "description": "Type-safe dependency injection for TypeScript. Zero ceremony, full inference, no decorators, no tokens. ~4KB gzip, built-in introspection for AI tooling.",
  "type": "module",
  "main": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "default": "./dist/index.mjs"
    }
  },
  "files": [
    "dist",
    "!dist/*.map"
  ],
  "scripts": {
    "build": "tsdown",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit && tsc --noEmit -p examples/tsconfig.json",
    "lint": "biome check",
    "lint:fix": "biome check --fix",
    "format": "biome format --write",
    "format:check": "biome format",
    "bench": "tsx benchmarks/resolution.ts",
    "check": "biome check && pnpm typecheck",
    "example:web": "tsx examples/01-web-service.ts",
    "example:test": "tsx examples/02-modular-testing.ts",
    "example:plugin": "tsx examples/03-plugin-system.ts",
    "example:modules": "tsx examples/04-modules.ts",
    "example:typing": "tsx examples/05-zod-style-typing.ts",
    "example:pinia": "tsx examples/06-pinia-augmentation.ts",
    "prepublishOnly": "npm run build"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "dependency-injection",
    "di",
    "ioc",
    "typescript",
    "proxy",
    "ai-first",
    "clean-architecture"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/axelhamil/inwire.git"
  },
  "homepage": "https://github.com/axelhamil/inwire#readme",
  "bugs": {
    "url": "https://github.com/axelhamil/inwire/issues"
  },
  "packageManager": "pnpm@10.26.0",
  "license": "MIT",
  "devDependencies": {
    "@biomejs/biome": "^2.4.15",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@vitest/coverage-v8": "^4.1.7",
    "publint": "^0.3.21",
    "semantic-release": "^25.0.3",
    "tsdown": "^0.20.3",
    "tsx": "^4.22.3",
    "typescript": "^5.9.3",
    "vitest": "^4.1.7"
  }
}
