openredaction 1.0.0
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/README.md +74 -0
- package/dist/HealthCheck-A5OD4ATR.mjs +12 -0
- package/dist/HealthCheck-A5OD4ATR.mjs.map +1 -0
- package/dist/chunk-7OGNW2MU.mjs +1701 -0
- package/dist/chunk-7OGNW2MU.mjs.map +1 -0
- package/dist/chunk-MYYLGNXS.mjs +149 -0
- package/dist/chunk-MYYLGNXS.mjs.map +1 -0
- package/dist/chunk-WMJKH4XE.mjs +34 -0
- package/dist/chunk-WMJKH4XE.mjs.map +1 -0
- package/dist/chunk-ZRHGDEPC.mjs +297 -0
- package/dist/chunk-ZRHGDEPC.mjs.map +1 -0
- package/dist/cli/test-pattern.js +430 -0
- package/dist/document-AOMZP7UR.mjs +26 -0
- package/dist/document-AOMZP7UR.mjs.map +1 -0
- package/dist/index.cli.js +15093 -0
- package/dist/index.d.mts +4111 -0
- package/dist/index.d.ts +4111 -0
- package/dist/index.js +18488 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +16134 -0
- package/dist/index.mjs.map +1 -0
- package/dist/workers-RMN5POM6.mjs +10 -0
- package/dist/workers-RMN5POM6.mjs.map +1 -0
- package/package.json +82 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "openredaction",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Production-ready PII detection and redaction library with 558+ patterns, document processing, OCR, RBAC, and enterprise features",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"openredaction": "./dist/index.cli.js",
|
|
10
|
+
"openredaction-test-pattern": "./dist/cli/test-pattern.js"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"import": "./dist/index.mjs",
|
|
16
|
+
"require": "./dist/index.js"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "tsup",
|
|
24
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"test:coverage": "vitest run --coverage",
|
|
28
|
+
"bench": "vitest bench --run",
|
|
29
|
+
"bench:watch": "vitest bench",
|
|
30
|
+
"lint": "tsc --noEmit",
|
|
31
|
+
"clean": "rm -rf dist"
|
|
32
|
+
},
|
|
33
|
+
"keywords": [
|
|
34
|
+
"pii",
|
|
35
|
+
"redaction",
|
|
36
|
+
"privacy",
|
|
37
|
+
"gdpr",
|
|
38
|
+
"hipaa",
|
|
39
|
+
"data-protection",
|
|
40
|
+
"sensitive-data",
|
|
41
|
+
"openredaction",
|
|
42
|
+
"redact",
|
|
43
|
+
"anonymization",
|
|
44
|
+
"pii-detection",
|
|
45
|
+
"ccpa"
|
|
46
|
+
],
|
|
47
|
+
"author": "",
|
|
48
|
+
"license": "MIT",
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"pdf-parse": "^1.1.1",
|
|
51
|
+
"mammoth": "^1.6.0",
|
|
52
|
+
"tesseract.js": "^5.0.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependenciesMeta": {
|
|
55
|
+
"pdf-parse": {
|
|
56
|
+
"optional": true
|
|
57
|
+
},
|
|
58
|
+
"mammoth": {
|
|
59
|
+
"optional": true
|
|
60
|
+
},
|
|
61
|
+
"tesseract.js": {
|
|
62
|
+
"optional": true
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"devDependencies": {
|
|
66
|
+
"@types/express": "^5.0.5",
|
|
67
|
+
"@types/node": "^20.10.0",
|
|
68
|
+
"@types/react": "^19.2.6",
|
|
69
|
+
"@vitest/coverage-v8": "^1.0.4",
|
|
70
|
+
"tsup": "^8.0.1",
|
|
71
|
+
"typescript": "^5.3.3",
|
|
72
|
+
"vitest": "^1.0.4"
|
|
73
|
+
},
|
|
74
|
+
"engines": {
|
|
75
|
+
"node": ">=20.0.0"
|
|
76
|
+
},
|
|
77
|
+
"repository": {
|
|
78
|
+
"type": "git",
|
|
79
|
+
"url": "https://github.com/sam247/openredact.git",
|
|
80
|
+
"directory": "packages/core"
|
|
81
|
+
}
|
|
82
|
+
}
|