annotatedtext-remark
Version:
A lightweight JavaScript library based on annotatedtext and remark-parse for converting markdown documents into an annotated text format consumable by LanguageTool as AnnotatedText.
61 lines (60 loc) • 1.73 kB
JSON
{
"name": "annotatedtext-remark",
"version": "1.0.10",
"description": "A lightweight JavaScript library based on annotatedtext and remark-parse for converting markdown documents into an annotated text format consumable by LanguageTool as AnnotatedText.",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"exports": [
"./out/index.js",
"./types/index.d.ts"
],
"types": "types/index.d.ts",
"files": [
"out/**/*",
"types/index.d.ts"
],
"scripts": {
"test": "mocha --reporter spec ./tests/test.js",
"clean": "rm -rf out/*",
"build": "tsc",
"rebuild": "npm run clean && npm run build",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/prosegrinder/annotatedtext-remark.git"
},
"keywords": [
"languagetool",
"annotatedtext",
"remark-parse"
],
"author": "David L. Day <david@davidlday.com> (https://www.davidlday.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prosegrinder/annotatedtext-remark/issues"
},
"homepage": "https://github.com/prosegrinder/annotatedtext-remark#readme",
"dependencies": {
"annotatedtext": "^1.0.5",
"remark-frontmatter": "^5.0.0",
"remark-parse": "^10.0.1",
"unified": "^10.1.2"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/mocha": "^10.0.2",
"@types/node": "^20.5.7",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"chai": "^5.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^48.2.0",
"mocha": "^10.2.0",
"typescript": "^5.3.3"
}
}