@kyciris/core 0.1.1 → 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 +273 -160
- package/dist/index.d.mts +1353 -303
- package/dist/index.d.ts +1353 -303
- package/dist/index.js +1892 -420
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1851 -414
- package/dist/index.mjs.map +1 -1
- package/package.json +39 -12
package/package.json
CHANGED
|
@@ -1,22 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyciris/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "UI-agnostic client for the KYCiris identity verification API",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://kyciris.com",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"email": "info@kyciris.com"
|
|
9
|
+
},
|
|
10
|
+
"keywords": [
|
|
11
|
+
"kyc",
|
|
12
|
+
"kyciris",
|
|
13
|
+
"identity-verification",
|
|
14
|
+
"ocr",
|
|
15
|
+
"face-match",
|
|
16
|
+
"aml",
|
|
17
|
+
"onboarding",
|
|
18
|
+
"api-client"
|
|
19
|
+
],
|
|
4
20
|
"main": "./dist/index.js",
|
|
5
21
|
"module": "./dist/index.mjs",
|
|
6
22
|
"types": "./dist/index.d.ts",
|
|
7
23
|
"exports": {
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
"axios": "^1.6.0"
|
|
24
|
+
".": {
|
|
25
|
+
"types": "./dist/index.d.ts",
|
|
26
|
+
"import": "./dist/index.mjs",
|
|
27
|
+
"require": "./dist/index.js"
|
|
28
|
+
}
|
|
14
29
|
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist"
|
|
32
|
+
],
|
|
33
|
+
"sideEffects": false,
|
|
15
34
|
"devDependencies": {
|
|
16
|
-
"@types/node": "^20.
|
|
17
|
-
"
|
|
18
|
-
"tsup": "^8.
|
|
19
|
-
"typescript": "~
|
|
35
|
+
"@types/node": "^22.20.3",
|
|
36
|
+
"@vitest/coverage-v8": "^5.0.1",
|
|
37
|
+
"tsup": "^8.5.1",
|
|
38
|
+
"typescript": "~6.0.3",
|
|
39
|
+
"vitest": "^5.0.1"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=18"
|
|
20
43
|
},
|
|
21
44
|
"publishConfig": {
|
|
22
45
|
"access": "public"
|
|
@@ -25,6 +48,10 @@
|
|
|
25
48
|
"build": "tsup",
|
|
26
49
|
"dev": "tsup --watch",
|
|
27
50
|
"typecheck": "tsc --noEmit",
|
|
28
|
-
"
|
|
51
|
+
"test": "vitest run",
|
|
52
|
+
"test:watch": "vitest",
|
|
53
|
+
"test:coverage": "vitest run --coverage",
|
|
54
|
+
"lint": "eslint src test --config ../../eslint.config.mjs",
|
|
55
|
+
"smoke": "node scripts/smoke.mjs"
|
|
29
56
|
}
|
|
30
57
|
}
|