text-processing/text-utils/package.json

47 lines
1.3 KiB
JSON

{
"name": "@transquinnftw/text-utils",
"version": "1.2.4",
"description": "High-performance text processing utilities for deterministic text manipulation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"spellcheck-cli": "./bin/spellcheck-cli.ts"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"test:integration": "vitest --config integration/vitest.config.ts",
"test:all": "npm run test && npm run test:integration",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"benchmark": "tsx benchmarks/spellcheck.bench.ts"
},
"keywords": [
"text",
"utils",
"parsing",
"cache",
"performance"
],
"author": "",
"license": "MIT",
"dependencies": {
"@venus/text-algorithms": "link:../algorithms"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
}
}