{
  "name": "@openmrs/esm-translations",
  "version": "9.0.2",
  "license": "MPL-2.0",
  "description": "O3 Framework module for translation support",
  "type": "module",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "default": "./dist/index.js"
    },
    "./src/public": {
      "types": "./src/public.ts",
      "default": "./dist/public.js"
    },
    "./mock": {
      "import": "./mock.ts",
      "require": "./mock-jest.ts"
    },
    "./package.json": {
      "default": "./package.json"
    }
  },
  "source": true,
  "scripts": {
    "build": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
    "build:development": "rimraf dist && concurrently \"swc --strip-leading-paths src -d dist\" \"tsc --project tsconfig.build.json\"",
    "typescript": "tsc --project tsconfig.build.json",
    "lint": "eslint src --ext ts,tsx",
    "extract-translations": "i18next src/translations.ts --config='i18next-parser.config.mjs'"
  },
  "keywords": [
    "openmrs",
    "microfrontends"
  ],
  "directories": {
    "lib": "dist",
    "src": "src"
  },
  "browserslist": [
    "extends browserslist-config-openmrs"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/openmrs/openmrs-esm-core.git"
  },
  "bugs": {
    "url": "https://github.com/openmrs/openmrs-esm-core/issues"
  },
  "homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "i18next": "^25.5.3"
  },
  "peerDependencies": {
    "i18next": "25.x"
  },
  "devDependencies": {
    "@swc/cli": "^0.7.7",
    "@swc/core": "^1.11.29",
    "concurrently": "^9.1.2",
    "i18next-parser": "^9.3.0",
    "rimraf": "^6.0.1"
  }
}