@lunarisapp/readability
Version:
A library for calculating readability scores of texts
57 lines • 1.3 kB
JSON
{
"name": "@lunarisapp/readability",
"description": "A library for calculating readability scores of texts",
"version": "1.1.0",
"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.2.6",
"@lunarisapp/language": "1.1.0",
"@lunarisapp/stats": "1.0.3"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@jest/globals": "^30.2.0",
"babel-jest": "^30.2.0",
"jest": "^30.2.0",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "jest"
}
}