{
  "name": "@sudobility/di",
  "version": "1.5.58",
  "description": "Platform-agnostic dependency injection interfaces for React and React Native projects with platform-specific implementations",
  "type": "module",
  "main": "dist/web/index.js",
  "types": "dist/web/index.d.ts",
  "react-native": "dist/rn/index.js",
  "exports": {
    ".": {
      "react-native": {
        "import": "./dist/rn/index.js",
        "types": "./dist/rn/index.d.ts"
      },
      "default": {
        "import": "./dist/web/index.js",
        "types": "./dist/web/index.d.ts"
      }
    },
    "./interfaces": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./mocks": {
      "import": "./dist/mocks/index.js",
      "types": "./dist/mocks/index.d.ts"
    },
    "./web": {
      "import": "./dist/web/index.js",
      "types": "./dist/web/index.d.ts"
    },
    "./rn": {
      "import": "./dist/rn/index.js",
      "types": "./dist/rn/index.d.ts"
    },
    "./analytics": {
      "import": "./dist/analytics/analytics.js",
      "types": "./dist/analytics/analytics.d.ts"
    },
    "./env": {
      "import": "./dist/env.js",
      "types": "./dist/env.d.ts"
    },
    "./logging": {
      "import": "./dist/logging/index.js",
      "types": "./dist/logging/index.d.ts"
    },
    "./navigation": {
      "import": "./dist/navigation/navigation.js",
      "types": "./dist/navigation/navigation.d.ts"
    },
    "./network": {
      "import": "./dist/network/index.js",
      "types": "./dist/network/index.d.ts"
    },
    "./notification": {
      "import": "./dist/notification/notification.js",
      "types": "./dist/notification/notification.d.ts"
    },
    "./storage": {
      "import": "./dist/storage/storage.js",
      "types": "./dist/storage/storage.d.ts"
    },
    "./types": {
      "import": "./dist/types.js",
      "types": "./dist/types.d.ts"
    },
    "./hooks": {
      "import": "./dist/hooks/index.js",
      "types": "./dist/hooks/index.d.ts"
    },
    "./utils": {
      "import": "./dist/utils/index.js",
      "types": "./dist/utils/index.d.ts"
    },
    "./info": {
      "import": "./dist/info/index.js",
      "types": "./dist/info/index.d.ts"
    },
    "./firebase": {
      "import": "./dist/firebase/index.js",
      "types": "./dist/firebase/index.d.ts"
    }
  },
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ci": "vitest run --coverage",
    "prepublishOnly": "bun run clean && bun run test && bun run build",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src --ext .ts,.tsx",
    "lint:fix": "eslint src --ext .ts,.tsx --fix",
    "format": "prettier --write src/**/*.ts"
  },
  "keywords": [
    "dependency-injection",
    "react",
    "react-native",
    "typescript",
    "platform-agnostic",
    "interfaces"
  ],
  "author": "johnqh",
  "devDependencies": {
    "@react-native-firebase/analytics": "^23.8.3",
    "@react-native-firebase/app": "^23.8.3",
    "@react-native-firebase/messaging": "^23.8.3",
    "@react-native-firebase/remote-config": "^23.8.3",
    "@sudobility/types": "^1.9.62",
    "@types/node": "^24.5.2",
    "@types/react": "^19.2.2",
    "@typescript-eslint/eslint-plugin": "^8.44.1",
    "@typescript-eslint/parser": "^8.44.1",
    "@vitest/coverage-v8": "^3.2.4",
    "eslint": "^9.36.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import-x": "^4.16.1",
    "eslint-plugin-prettier": "^5.5.4",
    "firebase": "^12.8.0",
    "prettier": "^3.6.2",
    "typescript": "^5.9.2",
    "vitest": "^3.2.4"
  },
  "peerDependencies": {
    "@notifee/react-native": ">=7.0.0",
    "@react-native-async-storage/async-storage": ">=1.19.0",
    "@react-native-community/netinfo": ">=9.0.0",
    "@react-native-firebase/analytics": ">=18.0.0",
    "@react-native-firebase/app": ">=18.0.0",
    "@react-native-firebase/messaging": ">=18.0.0",
    "@react-native-firebase/remote-config": ">=18.0.0",
    "@sudobility/types": "^1.9.62",
    "firebase": ">=11.0.0",
    "react": ">=18.0.0",
    "react-native": ">=0.70.0"
  },
  "peerDependenciesMeta": {
    "react-native": {
      "optional": true
    },
    "@react-native-async-storage/async-storage": {
      "optional": true
    },
    "@react-native-community/netinfo": {
      "optional": true
    },
    "@notifee/react-native": {
      "optional": true
    },
    "firebase": {
      "optional": true
    },
    "@react-native-firebase/app": {
      "optional": true
    },
    "@react-native-firebase/analytics": {
      "optional": true
    },
    "@react-native-firebase/messaging": {
      "optional": true
    },
    "@react-native-firebase/remote-config": {
      "optional": true
    }
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/johnqh/di.git"
  },
  "publishConfig": {
    "access": "restricted"
  },
  "license": "BUSL-1.1"
}
