live-word-count
Version:
A real-time word counting utility for text input
42 lines (41 loc) • 863 B
JSON
{
"name": "live-word-count",
"version": "1.0.4",
"description": "A real-time word counting utility for text input",
"main": "index.cjs",
"exports": {
"import": "./index.mjs",
"require": "./index.cjs"
},
"scripts": {
"test": "jest",
"start": "node index.cjs",
"lint": "eslint ."
},
"keywords": [
"word-count",
"text-analysis",
"counter",
"live-count",
"text-processing"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TrilokShetty/live-word-count.git"
},
"bugs": {
"url": "https://github.com/TrilokShetty/live-word-count/issues"
},
"homepage": "https://github.com/TrilokShetty/live-word-count#readme",
"engines": {
"node": ">=14.0.0"
},
"files": [
"index.cjs",
"index.mjs",
"README.md",
"LICENSE"
]
}