{
  "name": "@intlayer/chokidar",
  "version": "5.7.8",
  "private": false,
  "description": "Uses chokidar to scan and build Intlayer declaration files into dictionaries based on Intlayer configuration.",
  "keywords": [
    "intlayer",
    "chokidar",
    "application",
    "transpile",
    "typescript",
    "javascript",
    "json",
    "file"
  ],
  "homepage": "https://intlayer.org",
  "bugs": {
    "url": "https://github.com/aymericzip/intlayer/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aymericzip/intlayer.git"
  },
  "license": "Apache-2.0",
  "author": {
    "name": "Aymeric PINEAU",
    "url": "https://github.com/aymericzip"
  },
  "contributors": [
    {
      "name": "Aymeric Pineau",
      "email": "ay.pineau@gmail.com",
      "url": "https://github.com/aymericzip"
    }
  ],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/cjs/index.cjs",
      "import": "./dist/esm/index.mjs"
    },
    "./package.json": "./package.json"
  },
  "main": "dist/cjs/index.cjs",
  "module": "dist/esm/index.mjs",
  "types": "dist/types/index.d.ts",
  "typesVersions": {
    "*": {
      "package.json": [
        "./package.json"
      ]
    }
  },
  "files": [
    "./dist",
    "./package.json"
  ],
  "dependencies": {
    "@babel/generator": "^7.27.5",
    "@babel/parser": "^7.27.5",
    "@babel/traverse": "^7.27.4",
    "@babel/types": "^7.27.6",
    "chokidar": "^3.6.0",
    "crypto-js": "^4.2.0",
    "deep-equal": "^2.2.3",
    "deepmerge": "^4.3.1",
    "fast-glob": "^3.3.3",
    "p-limit": "^3.1.0",
    "simple-git": "^3.27.0",
    "@intlayer/api": "5.7.8",
    "@intlayer/config": "5.7.8",
    "@intlayer/dictionaries-entry": "5.7.8",
    "intlayer": "5.7.8",
    "@intlayer/core": "5.7.8",
    "@intlayer/unmerged-dictionaries-entry": "5.7.8"
  },
  "devDependencies": {
    "@changesets/cli": "2.29.4",
    "@types/babel__generator": "^7.27.0",
    "@types/babel__traverse": "^7.20.7",
    "@types/crypto-js": "^4.2.2",
    "@types/deep-equal": "^1.0.4",
    "@types/node": "^22.15.30",
    "@typescript-eslint/parser": "^8.33.1",
    "concurrently": "^9.1.2",
    "eslint": "^9.28.0",
    "prettier": "^3.5.3",
    "rimraf": "^6.0.1",
    "tsc-alias": "^1.8.16",
    "tsup": "^8.5.0",
    "typescript": "^5.8.3",
    "vitest": "^3.2.2",
    "@intlayer/backend": "5.7.8",
    "@utils/eslint-config": "1.0.4",
    "@utils/tsup-config": "1.0.4",
    "@utils/ts-config-types": "1.0.4",
    "@utils/ts-config": "1.0.4"
  },
  "peerDependencies": {
    "fast-glob": "^3.3.3",
    "react": ">=16.0.0",
    "@intlayer/api": "5.7.8",
    "@intlayer/config": "5.7.8",
    "intlayer": "5.7.8",
    "@intlayer/core": "5.7.8"
  },
  "engines": {
    "node": ">=14.18"
  },
  "bug": {
    "url": "https://github.com/aymericzip/intlayer/issues"
  },
  "scripts": {
    "build": "pnpm clean & pnpm build:ci",
    "build:ci": "pnpm build:package & pnpm build:types",
    "build:package": "tsup",
    "build:types": "tsc --project ./tsconfig.types.json && tsc-alias --project ./tsconfig.types.json",
    "clean": "rimraf ./dist",
    "dev": "concurrently --prefix none \"tsup --watch\" \"tsc --project ./tsconfig.types.json --watch\" \"tsc-alias --project ./tsconfig.types.json --watch\"",
    "lint": "eslint . --cache",
    "lint:fix": "eslint . --cache --fix",
    "prettier": "prettier . --check",
    "prettier:fix": "prettier --write src/**/*",
    "test": "vitest run",
    "test:watch": "vitest"
  }
}