UNPKG

twl-generator

Version:

Generate term-to-article lists from unfoldingWord en_tw archive for Bible books. Works in both Node.js (CLI) and React.js (browser) environments.

66 lines (65 loc) 1.6 kB
{ "name": "twl-generator", "version": "1.4.16", "description": "Generate term-to-article lists from unfoldingWord en_tw archive for Bible books. Works in both Node.js (CLI) and React.js (browser) environments.", "main": "src/index.js", "bin": { "twl-generator": "src/cli.js" }, "type": "module", "scripts": { "start": "node src/index.js", "cli": "node src/cli.js", "test": "node src/cli.js --book RUT --output test-output.tsv" }, "keywords": [ "bible", "twl", "generator", "cli", "react", "browser", "unfoldingword", "translation-words" ], "author": "Richard Mahn <rich.mahn@unfoldingword.org>", "license": "MIT", "homepage": "https://github.com/unfoldingWord/node-twl-generator#readme", "repository": { "type": "git", "url": "git+https://github.com/unfoldingWord/node-twl-generator.git" }, "bugs": { "url": "https://github.com/unfoldingWord/node-twl-generator/issues" }, "files": [ "src/cli.js", "src/index.js", "src/common/", "src/utils/twl-matcher.js", "src/utils/zipProcessor.js", "src/utils/usfm-alignment-remover.js", "README.md", "LICENSE" ], "engines": { "node": ">=18.0.0" }, "dependencies": { "compromise": "^14.14.2", "csv-parse": "^5.5.6", "csv-stringify": "^6.5.0", "en-inflectors": "^1.0.12", "jszip": "^3.10.1", "tsv-quote-converters": "^1.1.21", "usfm-alignment-remover": "^0.1.6" }, "peerDependencies": { "react": ">=16.8.0" }, "peerDependenciesMeta": { "react": { "optional": true } } }