tokenize-words
Version:
Break down text into array of words.
56 lines (55 loc) • 1.5 kB
JSON
{
"name": "tokenize-words",
"author": "gusalbukrk",
"version": "0.0.4-alpha.0",
"description": "Break down text into array of words.",
"license": "MIT",
"keywords": [
"fullfiller",
"nlp",
"tokenizer",
"tokenization",
"segmentation"
],
"homepage": "https://github.com/gusalbukrk/fullfiller/tree/main/packages/tokenize-words#readme",
"repository": {
"type": "git",
"url": "https://github.com/gusalbukrk/fullfiller.git",
"directory": "packages/tokenize-words"
},
"type": "module",
"types": "dist/index.d.ts",
"main": "dist/bundle.cjs",
"engines": {
"node": ">=14.0.0"
},
"exports": {
".": {
"import": "./dist/bundle.js",
"require": "./dist/bundle.cjs"
},
"./src": "./src/index.ts"
},
"files": [
"dist",
"src",
"!src/**/__tests__/",
"!src/**/__spec__/",
"!src/**/*.test.[jt]s",
"!src/**/*.test.[jt]sx",
"!src/**/*.spec.[jt]s",
"!src/**/*.spec.[jt]sx"
],
"scripts": {
"build": "rollup -c ../../rollup.config.js",
"lint": "eslint src/ --fix && cspell \"**\" -c ../../cspell.config.cjs --no-progress",
"postbuild": "eslint dist/index.d.ts --fix --no-ignore && replace-in-file --configFile=../../.replace-in-file.cjs",
"postpublish": "rimraf dist/",
"prepublishOnly": "npm run build",
"test": "jest --passWithNoTests"
},
"dependencies": {
"fullfiller-common": "^0.0.4-alpha.0"
},
"gitHead": "a37149cd4ece8bf9a19a2bb9427512b758cfef91"
}