@blindfold/sdk 1.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/LICENSE +21 -0
- package/README.md +427 -0
- package/dist/index-CsE6Vhax.d.mts +177 -0
- package/dist/index-CsE6Vhax.d.mts.map +1 -0
- package/dist/index-Dfv8zV_d.d.ts +177 -0
- package/dist/index-Dfv8zV_d.d.ts.map +1 -0
- package/dist/index.d.mts +450 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.d.ts +450 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +575 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +568 -0
- package/dist/index.mjs.map +1 -0
- package/dist/regex/index.d.mts +2 -0
- package/dist/regex/index.d.ts +2 -0
- package/dist/regex/index.js +5 -0
- package/dist/regex/index.mjs +4 -0
- package/dist/regex-BEaK0E7Y.js +4881 -0
- package/dist/regex-BEaK0E7Y.js.map +1 -0
- package/dist/regex-ByjZg3Zy.mjs +4839 -0
- package/dist/regex-ByjZg3Zy.mjs.map +1 -0
- package/package.json +86 -0
package/package.json
ADDED
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@blindfold/sdk",
|
|
3
|
+
"version": "1.0.2",
|
|
4
|
+
"description": "JavaScript/TypeScript SDK for Blindfold Gateway",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./regex": {
|
|
15
|
+
"types": "./dist/regex/index.d.ts",
|
|
16
|
+
"import": "./dist/regex/index.mjs",
|
|
17
|
+
"require": "./dist/regex/index.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"files": [
|
|
21
|
+
"dist",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "tsdown",
|
|
26
|
+
"dev": "tsdown --watch",
|
|
27
|
+
"type-check": "tsc --noEmit",
|
|
28
|
+
"test": "jest",
|
|
29
|
+
"test:watch": "jest --watch",
|
|
30
|
+
"test:coverage": "jest --coverage",
|
|
31
|
+
"lint": "eslint src tests",
|
|
32
|
+
"lint:fix": "eslint src tests --fix",
|
|
33
|
+
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
34
|
+
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
|
|
35
|
+
"clean": "rm -rf dist",
|
|
36
|
+
"prepublishOnly": "npm run clean && npm run build && npm run test",
|
|
37
|
+
"validate": "npm run type-check && npm run lint && npm run test"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"blindfold",
|
|
41
|
+
"pii",
|
|
42
|
+
"pii-detection",
|
|
43
|
+
"personally-identifiable-information",
|
|
44
|
+
"data-masking",
|
|
45
|
+
"anonymization",
|
|
46
|
+
"redaction",
|
|
47
|
+
"tokenization",
|
|
48
|
+
"data-privacy",
|
|
49
|
+
"privacy",
|
|
50
|
+
"security",
|
|
51
|
+
"gdpr",
|
|
52
|
+
"hipaa",
|
|
53
|
+
"pci-dss",
|
|
54
|
+
"llm",
|
|
55
|
+
"ai",
|
|
56
|
+
"offline-pii",
|
|
57
|
+
"presidio-alternative"
|
|
58
|
+
],
|
|
59
|
+
"author": "Blindfold Team",
|
|
60
|
+
"license": "MIT",
|
|
61
|
+
"repository": {
|
|
62
|
+
"type": "git",
|
|
63
|
+
"url": "git+https://github.com/blindfold-dev/blindfold-github.git",
|
|
64
|
+
"directory": "packages/js-sdk"
|
|
65
|
+
},
|
|
66
|
+
"bugs": {
|
|
67
|
+
"url": "https://github.com/blindfold-dev/blindfold-github/issues"
|
|
68
|
+
},
|
|
69
|
+
"homepage": "https://blindfold.dev",
|
|
70
|
+
"devDependencies": {
|
|
71
|
+
"@types/jest": "^29.5.11",
|
|
72
|
+
"@types/node": "^22.0.0",
|
|
73
|
+
"eslint": "^9.0.0",
|
|
74
|
+
"eslint-config-prettier": "^10.0.0",
|
|
75
|
+
"eslint-plugin-prettier": "^5.1.2",
|
|
76
|
+
"jest": "^29.7.0",
|
|
77
|
+
"prettier": "^3.1.1",
|
|
78
|
+
"ts-jest": "^29.1.1",
|
|
79
|
+
"tsdown": "^0.9.0",
|
|
80
|
+
"typescript": "^5.3.3",
|
|
81
|
+
"typescript-eslint": "^8.0.0"
|
|
82
|
+
},
|
|
83
|
+
"engines": {
|
|
84
|
+
"node": ">=18.0.0"
|
|
85
|
+
}
|
|
86
|
+
}
|