UNPKG

@lunarisapp/language

Version:

A utility library for core linguistic breakdown: vowels, consonants, words, and sentences.

57 lines 1.39 kB
{ "name": "@lunarisapp/language", "description": "A utility library for core linguistic breakdown: vowels, consonants, words, and sentences.", "version": "1.0.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": [ "text", "linguistics", "language", "vowels", "consonants", "tools", "words", "sentences" ], "license": "MIT", "main": "./dist/index.js", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", "devDependencies": { "@babel/core": "^7.26.9", "@babel/preset-env": "^7.26.9", "@babel/preset-typescript": "^7.26.0", "@eslint/js": "^9.20.0", "@jest/globals": "^29.7.0", "babel-jest": "^29.7.0", "eslint": "^9.20.1", "eslint-config-prettier": "^10.0.1", "eslint-plugin-only-warn": "^1.1.0", "eslint-plugin-turbo": "^2.4.2", "jest": "^29.7.0", "tsup": "^8.3.6", "typescript": "^5.5.3", "typescript-eslint": "^8.24.0" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "lint": "eslint \"{src,tests}/**/*.ts\" --fix", "test": "jest" } }