@himorishige/noren-core
Version:
Core PII detection, masking, and tokenization library built on Web Standards
67 lines • 1.63 kB
JSON
{
"name": "@himorishige/noren-core",
"version": "0.6.4",
"description": "Core PII detection, masking, and tokenization library built on Web Standards",
"keywords": [
"pii",
"privacy",
"redaction",
"masking",
"validation",
"japanese",
"web-standards",
"streams",
"webcrypto",
"edge"
],
"homepage": "https://github.com/himorishige/noren#readme",
"repository": {
"type": "git",
"url": "https://github.com/himorishige/noren.git",
"directory": "packages/noren-core"
},
"bugs": {
"url": "https://github.com/himorishige/noren/issues"
},
"author": "himorishige",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./min": "./dist/index.min.js",
"./types": "./dist/types.js",
"./utils": "./dist/utils.js",
"./patterns": "./dist/patterns.js",
"./detection": "./dist/detection.js",
"./masking": "./dist/masking.js",
"./pool": "./dist/pool.js",
"./lazy": "./dist/lazy.js"
},
"sideEffects": false,
"engines": {
"node": ">=20.10.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^5.6.2",
"@types/node": "^24"
},
"scripts": {
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "tsc -p tsconfig.json",
"build:min": "rollup -c",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest watch"
}
}