text-processing-utils/package.json

65 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2026-01-21 11:37:27 -08:00
{
"name": "@lilith/text-processing-utils",
"type": "module",
"version": "1.3.12",
"sideEffects": false,
2026-01-21 11:37:27 -08:00
"description": "High-performance text processing utilities for deterministic text manipulation",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
2026-01-21 11:37:27 -08:00
"bin": {
"spellcheck-cli": "./bin/spellcheck-cli.ts"
},
"scripts": {
"build": "tsup",
2026-01-21 11:37:27 -08:00
"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/spellchecker-wasm": "^1.0.3",
"@lilith/text-processing-algorithms": "^1.1.1"
2026-01-21 11:37:27 -08:00
},
"devDependencies": {
"@lilith/configs": "workspace:*",
2026-01-21 11:37:27 -08:00
"@types/node": "^20.19.28",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.7.4",
"tsup": "^8.5.1",
2026-01-21 11:37:27 -08:00
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
2026-01-21 11:37:27 -08:00
},
"files": [
"dist",
"README.md"
],
2026-01-21 11:37:27 -08:00
"publishConfig": {
"registry": "http://forge.black.lan/api/packages/lilith/npm/"
2026-01-21 11:37:27 -08:00
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}