{
  "name": "@lunarisapp/readability",
  "description": "A library for calculating readability scores of texts",
  "version": "1.0.1",
  "author": {
    "name": "Roman Sirokov",
    "url": "https://mrlightful.com",
    "email": "roman@lunaris.app"
  },
  "homepage": "https://lunaris.app",
  "repository": {
    "url": "https://github.com/LunarisApp/text-tools"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "LICENSE",
    "README.md",
    "dist"
  ],
  "keywords": [
    "readability",
    "text",
    "linguistics",
    "language",
    "flesch-kincaid",
    "flesch reading ease",
    "smog",
    "gunning fog",
    "coleman-liau",
    "automated readability index"
  ],
  "license": "MIT",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "dependencies": {
    "lru-cache": "^11.0.2",
    "@lunarisapp/stats": "1.0.0",
    "@lunarisapp/language": "1.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.26.9",
    "@babel/preset-env": "^7.26.9",
    "@babel/preset-typescript": "^7.26.0",
    "@eslint/js": "^9.21.0",
    "@jest/globals": "^29.7.0",
    "babel-jest": "^29.7.0",
    "eslint": "^9.21.0",
    "eslint-config-prettier": "^10.0.2",
    "eslint-plugin-only-warn": "^1.1.0",
    "eslint-plugin-turbo": "^2.4.4",
    "jest": "^29.7.0",
    "tsup": "^8.4.0",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.25.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format cjs,esm --dts",
    "lint": "eslint \"{src,tests}/**/*.ts\" --fix",
    "test": "jest"
  }
}