@himorishige/noren-devtools
Version:
Development and testing tools for Noren PII detection library
57 lines • 1.36 kB
JSON
{
"name": "@himorishige/noren-devtools",
"version": "0.6.4",
"description": "Development and testing tools for Noren PII detection library",
"keywords": [
"pii",
"privacy",
"redaction",
"testing",
"benchmarking",
"evaluation",
"noren-devtools"
],
"homepage": "https://github.com/himorishige/noren#readme",
"repository": {
"type": "git",
"url": "https://github.com/himorishige/noren.git",
"directory": "packages/noren-devtools"
},
"bugs": {
"url": "https://github.com/himorishige/noren/issues"
},
"author": "himorishige",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./benchmark": "./dist/benchmark.js",
"./evaluation": "./dist/evaluation.js"
},
"sideEffects": false,
"engines": {
"node": ">=20.10.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@himorishige/noren-core": "0.6.4"
},
"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",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest watch"
}
}