@vaultkeepr/core 0.1.1 → 0.1.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 +11 -10
- package/src/index.ts +0 -52
package/package.json
CHANGED
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaultkeepr/core",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "TypeScript vault crypto: XChaCha20-Poly1305, Argon2id, wallet ECIES envelopes, TOTP, imports — VaultKeepR SDK",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
|
-
"url": "https://github.com/VaultKeepR/vaultkeepr-
|
|
7
|
+
"url": "git+https://github.com/VaultKeepR/vaultkeepr-public.git",
|
|
8
|
+
"directory": "packages/core"
|
|
8
9
|
},
|
|
9
|
-
"homepage": "https://github.com/VaultKeepR/vaultkeepr-core#readme",
|
|
10
|
+
"homepage": "https://github.com/VaultKeepR/vaultkeepr-public/tree/main/packages/core#readme",
|
|
10
11
|
"bugs": {
|
|
11
|
-
"url": "https://github.com/VaultKeepR/vaultkeepr-
|
|
12
|
+
"url": "https://github.com/VaultKeepR/vaultkeepr-public/issues"
|
|
12
13
|
},
|
|
13
14
|
"license": "MIT",
|
|
14
15
|
"keywords": [
|
|
@@ -20,14 +21,14 @@
|
|
|
20
21
|
"e2ee",
|
|
21
22
|
"vaultkeepr"
|
|
22
23
|
],
|
|
23
|
-
"main": "./
|
|
24
|
-
"module": "./
|
|
25
|
-
"types": "./
|
|
24
|
+
"main": "./dist/index.js",
|
|
25
|
+
"module": "./dist/index.mjs",
|
|
26
|
+
"types": "./dist/index.d.ts",
|
|
26
27
|
"exports": {
|
|
27
28
|
".": {
|
|
28
|
-
"types": "./
|
|
29
|
-
"import": "./
|
|
30
|
-
"require": "./
|
|
29
|
+
"types": "./dist/index.d.ts",
|
|
30
|
+
"import": "./dist/index.mjs",
|
|
31
|
+
"require": "./dist/index.js"
|
|
31
32
|
}
|
|
32
33
|
},
|
|
33
34
|
"dependencies": {
|
package/src/index.ts
DELETED
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
export * from "./types";
|
|
2
|
-
export * from "./groups";
|
|
3
|
-
export * from "./crypto";
|
|
4
|
-
export * from "./secure";
|
|
5
|
-
export {
|
|
6
|
-
deriveKeyFromPasswordArgon2,
|
|
7
|
-
deriveKeyFromPasswordAndSignatureArgon2,
|
|
8
|
-
deriveKeyFromPasswordAndSignatureLegacy,
|
|
9
|
-
normalizeSignatureForKdf,
|
|
10
|
-
generateSaltArgon2 } from
|
|
11
|
-
"./kdf-argon2";
|
|
12
|
-
export * from "./envelope";
|
|
13
|
-
export * from "./vault";
|
|
14
|
-
export * from "./payload";
|
|
15
|
-
export * from "./payloadVersion";
|
|
16
|
-
export * from "./import";
|
|
17
|
-
export * from "./encrypted-export";
|
|
18
|
-
export * from "./export";
|
|
19
|
-
export * from "./address";
|
|
20
|
-
export * from "./totp";
|
|
21
|
-
export * from "./cards";
|
|
22
|
-
export { getPwnedPasswordCount } from "./pwnedPassword";
|
|
23
|
-
export type { PwnedPasswordFetchOptions } from "./pwnedPassword";
|
|
24
|
-
export { generatePassword, uniformRandom, generatePassphrase } from "./generatePassword";
|
|
25
|
-
export type { GeneratePasswordOptions, GeneratePassphraseOptions } from "./generatePassword";
|
|
26
|
-
export {
|
|
27
|
-
captureError,
|
|
28
|
-
getErrorBuffer,
|
|
29
|
-
clearErrorBuffer,
|
|
30
|
-
formatErrorReport,
|
|
31
|
-
sendErrorReport } from
|
|
32
|
-
"./errorTracking";
|
|
33
|
-
export type { ErrorReport } from "./errorTracking";
|
|
34
|
-
export * from "./emailBreach";
|
|
35
|
-
export * from "./passwordHealth";
|
|
36
|
-
export * from "./breachMonitor";
|
|
37
|
-
export * from "./passkey-crypto";
|
|
38
|
-
export * from "./passkey";
|
|
39
|
-
export * from "./hiddenWallet";
|
|
40
|
-
export * from "./document-crypto";
|
|
41
|
-
export * from "./mrz";
|
|
42
|
-
export * from "./mrz-utils";
|
|
43
|
-
export * from "./mrz-nfc-crypto";
|
|
44
|
-
export * from "./nfc-crypto";
|
|
45
|
-
export * from "./sharing";
|
|
46
|
-
export * from "./passwordStrength";
|
|
47
|
-
export { threeWayMerge, mergeFolders, mergeFolderTrees, deleteFolder, deleteCloudFolder, deleteVaultEntry } from "./merge";
|
|
48
|
-
export * from "./pair";
|
|
49
|
-
export { BIP39_WORDLIST, suggestBip39Words } from "./bip39";
|
|
50
|
-
export { EFF_WORDLIST } from "./wordlist";
|
|
51
|
-
export { estimatePasswordEntropy } from "./passwordEntropy";
|
|
52
|
-
export * from "./slm-engine";
|