text-processing-algorithms/package.json

92 lines
2.3 KiB
JSON

{
"name": "@lilith/text-processing-algorithms",
"version": "1.1.0",
"description": "High-performance algorithms for text processing and data structures",
"author": "Venus Tech",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./distance": {
"types": "./dist/distance/index.d.ts",
"import": "./dist/distance/index.js",
"require": "./dist/distance/index.cjs"
},
"./phonetic": {
"types": "./dist/phonetic/index.d.ts",
"import": "./dist/phonetic/index.js",
"require": "./dist/phonetic/index.cjs"
},
"./data-structures": {
"types": "./dist/data-structures/index.d.ts",
"import": "./dist/data-structures/index.js",
"require": "./dist/data-structures/index.cjs"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --fix",
"lint:check": "eslint src",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@lilith/configs": "2.2.1-dev.1769110259",
"@types/node": "^20.19.28",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitest/coverage-v8": "^4.0.16",
"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",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"keywords": [
"algorithms",
"levenshtein",
"damerau-levenshtein",
"edit-distance",
"phonetic",
"soundex",
"metaphone",
"trie",
"text-processing",
"string-similarity",
"fuzzy-matching"
],
"repository": {
"type": "git",
"url": "https://github.com/uwuapps/algorithms"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}