@stll/anonymize 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@stll/anonymize",
3
+ "version": "0.0.2",
4
+ "description": "Multi-layer PII detection and anonymization pipeline with regex, NER, deny lists, and coreference resolution",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "types": "./dist/index.d.ts",
9
+ "import": "./dist/index.js",
10
+ "default": "./dist/index.js"
11
+ }
12
+ },
13
+ "types": "dist/index.d.ts",
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "restricted"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/stella/anonymize.git"
23
+ },
24
+ "license": "MIT",
25
+ "scripts": {
26
+ "build": "tsdown",
27
+ "prepublishOnly": "bun run build",
28
+ "typecheck": "tsc --noEmit",
29
+ "lint": "echo 'no linter configured yet'",
30
+ "format": "echo 'no formatter configured yet'"
31
+ },
32
+ "dependencies": {
33
+ "@huggingface/tokenizers": "^0.1.2",
34
+ "@stll/stdnum": "^0.0.1",
35
+ "@stll/text-search": "^0.0.1"
36
+ },
37
+ "peerDependencies": {
38
+ "@stll/anonymize-data": "^0.1.0"
39
+ },
40
+ "peerDependenciesMeta": {
41
+ "@stll/anonymize-data": {
42
+ "optional": true
43
+ }
44
+ },
45
+ "devDependencies": {
46
+ "tsdown": "^0.12.4",
47
+ "typescript": "^5.9.3"
48
+ }
49
+ }