{
  "name": "postcss-rtlcss",
  "version": "4.0.1",
  "description": "PostCSS plugin to build Cascading Style Sheets (CSS) with Left-To-Right (LTR) and Right-To-Left (RTL) rules",
  "keywords": [
    "postcss",
    "css",
    "postcss-plugin",
    "rtl",
    "ltr",
    "right-to-left",
    "left-to-right",
    "postcss-rtlcss",
    "rtlcss"
  ],
  "main": "index.js",
  "module": "esm/index.js",
  "types": "index.d.ts",
  "exports": {
    ".": {
      "require": "./index.js",
      "import": "./esm/index.js"
    },
    "./options": {
      "require": "./options.js",
      "import": "./esm/options.js"
    }
  },
  "files": [
    "esm/**/*",
    "index.d.ts",
    "index.js",
    "options.d.ts",
    "options.js"
  ],
  "scripts": {
    "test": "jest --clearCache && jest --verbose",
    "lint": "eslint src/**/*.ts",
    "clean": "./scripts/clean.sh",
    "copy": "./scripts/copy.sh",
    "modify-dts": "replace-in-file --configFile=config.replace.js",
    "build": "yarn clean && rollup --config rollup.config.js && yarn copy && yarn modify-dts",
    "prepare": "yarn build",
    "prepublishOnly": "npm run lint && npm run test",
    "version": "git add .",
    "postversion": "git push && git push --tags"
  },
  "author": "ElChiniNet",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/elchininet/postcss-rtlcss"
  },
  "dependencies": {
    "rtlcss": "4.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-json": "^4.1.0",
    "@types/eslint": "^8.4.6",
    "@types/jest": "^29.0.2",
    "@types/node": "^18.7.18",
    "@types/rtlcss": "^3.5.0",
    "@typescript-eslint/eslint-plugin": "^5.37.0",
    "@typescript-eslint/parser": "^5.37.0",
    "coveralls": "^3.1.1",
    "eslint": "^8.23.1",
    "eslint-plugin-jest": "^27.0.4",
    "jest": "^29.0.3",
    "postcss": "^8.4.16",
    "replace-in-file": "^6.3.5",
    "rollup": "^2.79.0",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-ts": "^3.0.2",
    "ts-jest": "^29.0.1",
    "typescript": "^4.8.3"
  },
  "peerDependencies": {
    "postcss": "^8.4.6"
  },
  "engines": {
    "node": ">=12.0.0"
  }
}
