@secrecy/lib 1.0.0-dev.63 → 1.0.0-dev.64
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/dist/BaseClient.js +4 -56
- package/dist/PopupTools.js +12 -32
- package/dist/ZeusThunder.js +1 -15
- package/dist/cache.js +1 -1
- package/dist/client/SecrecyAppClient.js +7 -36
- package/dist/client/SecrecyCloudClient.js +8 -224
- package/dist/client/SecrecyDbClient.js +4 -25
- package/dist/client/SecrecyMailClient.js +7 -172
- package/dist/client/SecrecyPayClient.js +5 -6
- package/dist/client/SecrecyWalletClient.js +6 -9
- package/dist/client/convert/file.js +1 -2
- package/dist/client/convert/mail.js +1 -6
- package/dist/client/convert/node.js +3 -15
- package/dist/client/helpers.js +6 -19
- package/dist/client/index.js +1 -7
- package/dist/client/storage.js +1 -1
- package/dist/client/types/index.js +1 -1
- package/dist/client/types/selectors.js +1 -4
- package/dist/crypto/file.js +6 -21
- package/dist/crypto/index.js +1 -3
- package/dist/index.js +1 -1
- package/dist/minify/index.js +1 -6
- package/dist/minify/lz4.js +79 -167
- package/dist/sodium.js +1 -1
- package/dist/utils/store-buddy.js +1 -8
- package/dist/utils/time.js +1 -3
- package/dist/utils/utils.js +1 -11
- package/dist/worker/md5.js +1 -2
- package/dist/worker/sodium.js +10 -12
- package/dist/worker/workerCodes.js +1 -1
- package/dist/zeus/const.js +2 -1
- package/dist/zeus/index.js +4 -129
- package/package.json +16 -16
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@secrecy/lib",
|
|
3
3
|
"author": "Anonymize <anonymize@gmail.com>",
|
|
4
4
|
"description": "Anonymize Secrecy Library",
|
|
5
|
-
"version": "1.0.0-dev.
|
|
5
|
+
"version": "1.0.0-dev.64",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/anonymize-org/lib.git"
|
|
@@ -44,29 +44,29 @@
|
|
|
44
44
|
"semantic-release": "semantic-release"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@babel/cli": "^7.
|
|
48
|
-
"@babel/core": "^7.19.
|
|
47
|
+
"@babel/cli": "^7.19.3",
|
|
48
|
+
"@babel/core": "^7.19.3",
|
|
49
49
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
50
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.
|
|
50
|
+
"@babel/plugin-proposal-object-rest-spread": "^7.19.4",
|
|
51
51
|
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
52
52
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
53
53
|
"@babel/plugin-transform-runtime": "^7.19.1",
|
|
54
|
-
"@babel/plugin-transform-typescript": "^7.19.
|
|
55
|
-
"@babel/preset-env": "^7.19.
|
|
54
|
+
"@babel/plugin-transform-typescript": "^7.19.3",
|
|
55
|
+
"@babel/preset-env": "^7.19.4",
|
|
56
56
|
"@babel/preset-typescript": "^7.18.6",
|
|
57
57
|
"@commitlint/cli": "^17.1.2",
|
|
58
58
|
"@commitlint/config-conventional": "^17.1.0",
|
|
59
59
|
"@types/jest": "28",
|
|
60
60
|
"@types/jsonwebtoken": "^8.5.9",
|
|
61
|
-
"@types/node": "^18.
|
|
61
|
+
"@types/node": "^18.11.0",
|
|
62
62
|
"@types/shortid": "^0.0.29",
|
|
63
63
|
"@types/spark-md5": "^3.0.2",
|
|
64
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
65
|
-
"@typescript-eslint/parser": "^5.
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
65
|
+
"@typescript-eslint/parser": "^5.40.1",
|
|
66
66
|
"babel-loader": "^8.2.5",
|
|
67
67
|
"babel-plugin-const-enum": "^1.2.0",
|
|
68
68
|
"cross-env": "^7.0.3",
|
|
69
|
-
"eslint": "^8.
|
|
69
|
+
"eslint": "^8.25.0",
|
|
70
70
|
"eslint-config-prettier": "^8.5.0",
|
|
71
71
|
"eslint-plugin-prettier": "^4.2.1",
|
|
72
72
|
"graphql-zeus": "^5.1.9",
|
|
@@ -80,19 +80,19 @@
|
|
|
80
80
|
"semantic-release": "^19.0.5",
|
|
81
81
|
"ts-jest": "28",
|
|
82
82
|
"ts-node": "^10.9.1",
|
|
83
|
-
"tsup": "^6.
|
|
84
|
-
"typedoc": "^0.23.
|
|
83
|
+
"tsup": "^6.3.0",
|
|
84
|
+
"typedoc": "^0.23.17",
|
|
85
85
|
"typedoc-plugin-missing-exports": "^1.0.0",
|
|
86
|
-
"typescript": "^4.8.
|
|
86
|
+
"typescript": "^4.8.4"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
89
|
"@secrecy/lib-utils": "^1.0.18",
|
|
90
|
-
"@types/libsodium-wrappers": "^0.7.
|
|
91
|
-
"axios": "^
|
|
90
|
+
"@types/libsodium-wrappers": "^0.7.10",
|
|
91
|
+
"axios": "^1.1.3",
|
|
92
92
|
"bson": "^4.7.0",
|
|
93
93
|
"ethers": "^5.7.1",
|
|
94
94
|
"jsonwebtoken": "^8.5.1",
|
|
95
|
-
"ky": "^0.31.
|
|
95
|
+
"ky": "^0.31.4",
|
|
96
96
|
"libsodium-wrappers": "^0.7.10",
|
|
97
97
|
"shortid": "^2.2.16",
|
|
98
98
|
"spark-md5": "^3.0.2"
|