text-processing/text-utils/package.json

57 lines
1.5 KiB
JSON

{
"name": "@lilith/text-processing-utils",
"type": "module",
"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": {
"@lilith/text-processing-algorithms": "workspace:*"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.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": "^4.0.16",
"@lilith/configs": "workspace:*"
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}