Files
anonymizer/package.json
Mobiletic f09b917f1a feat: initial release of @mobiletic/anonymizer
Framework-agnostic PII anonymization extracted from Mobiletic's chatbot.
Pluggable LLM detection + configurable regex fallback, deterministic
coreference, and streaming-safe de-anonymization.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-20 21:58:38 +01:00

63 lines
1.4 KiB
JSON

{
"name": "@mobiletic/anonymizer",
"version": "0.1.0",
"description": "Framework-agnostic PII anonymization & pseudonymization: pluggable LLM detection for free-form PII (names, addresses) with a deterministic regex fallback, deterministic coreference, and streaming-safe de-anonymization.",
"license": "MIT",
"author": "Mobiletic",
"homepage": "https://github.com/mobiletic/anonymizer#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mobiletic/anonymizer.git"
},
"bugs": {
"url": "https://github.com/mobiletic/anonymizer/issues"
},
"keywords": [
"anonymization",
"pseudonymization",
"pii",
"redaction",
"privacy",
"gdpr",
"nlpd",
"llm",
"data-protection"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"tsup": "^8.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"sideEffects": false
}