UNPKG

pii-paladin

Version:

A Node.js package to censor PII in a string using a hybrid NER and Regex approach.

51 lines (50 loc) 1.14 kB
{ "name": "pii-paladin", "version": "1.0.2", "description": "A Node.js package to censor PII in a string using a hybrid NER and Regex approach.", "main": "index.js", "types": "dist/index.d.ts", "files": [ "dist", "models", "wasm", "index.js" ], "type": "module", "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "start": "node example.js", "build": "tsc", "lint": "eslint .", "format": "prettier --write ." }, "keywords": [ "pii", "ner", "transformers", "offline", "censor", "regex" ], "author": "Gemini", "license": "ISC", "repository": { "type": "git", "url": "git+https://github.com/jeeem/PII-PALADIN.git" }, "devDependencies": { "jest": "^29.0.0", "typescript": "^5.0.0", "eslint": "^8.0.0", "eslint-config-prettier": "^9.0.0", "prettier": "^3.0.0", "@eslint/js": "^8.0.0", "globals": "^15.0.0", "@babel/eslint-parser": "^7.0.0", "@babel/core": "^7.0.0", "@babel/preset-env": "^7.0.0" }, "dependencies": { "@xenova/transformers": "^2.17.1" } }