UNPKG

tafic

Version:

To ASCII First Impression Converter - normalizes text to closest first impression of reader based on ASCII set.

63 lines (62 loc) 1.47 kB
{ "name": "tafic", "version": "0.1.0", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "sideEffects": false, "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "author": "tonylus", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/TonylusMark1/TAFIC.git" }, "keywords": [ "homoglyph", "string", "unicode", "normalization", "confusable", "ascii" ], "description": "To ASCII First Impression Converter - normalizes text to closest first impression of reader based on ASCII set.", "dependencies": { "emoji-regex": "^10.4.0", "homoglypher": "^0.1.14", "unicode-segmenter": "^0.13.0" }, "devDependencies": { "@types/node": "^22.14.0", "@types/prompts": "^2.4.9", "prompts": "^2.4.2", "tsup": "^8.4.0", "tsx": "^4.19.0", "typescript": "^5.8.2" }, "scripts": { "build": "tsup", "prepare": "npm run build", "maintaining:hcmap": "tsx ./maintaining-scripts/CheckHCMap/index.ts", "maintaining:culprits": "tsx ./maintaining-scripts/Culprits/index.ts", "testing:benchmark": "tsx ./testing/benchmark.ts" } }