@secrecy/lib 1.0.0-dev.57 → 1.0.0-dev.58
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 +5 -11
- package/dist/PopupTools.js +4 -4
- package/dist/ZeusThunder.js +3 -3
- package/dist/client/SecrecyAppClient.js +2 -4
- package/dist/client/SecrecyCloudClient.js +23 -33
- package/dist/client/SecrecyDbClient.js +2 -2
- package/dist/client/SecrecyMailClient.js +7 -9
- package/dist/client/convert/file.js +2 -2
- package/dist/client/convert/node.js +5 -7
- package/dist/client/helpers.js +2 -2
- package/dist/client/storage.js +4 -4
- package/dist/crypto/file.js +5 -5
- package/dist/minify/index.js +2 -2
- package/dist/worker/workerCodes.js +255 -3
- package/dist/zeus/const.js +24 -13
- package/dist/zeus/index.d.ts +66 -34
- package/dist/zeus/index.js +33 -41
- package/package.json +15 -14
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.58",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "https://github.com/anonymize-org/lib.git"
|
|
@@ -45,30 +45,31 @@
|
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@babel/cli": "^7.18.10",
|
|
48
|
-
"@babel/core": "^7.
|
|
48
|
+
"@babel/core": "^7.19.0",
|
|
49
49
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
50
50
|
"@babel/plugin-proposal-object-rest-spread": "^7.18.9",
|
|
51
|
+
"@babel/plugin-proposal-private-methods": "^7.18.6",
|
|
51
52
|
"@babel/plugin-syntax-import-meta": "^7.10.4",
|
|
52
53
|
"@babel/plugin-transform-runtime": "^7.18.10",
|
|
53
|
-
"@babel/plugin-transform-typescript": "^7.
|
|
54
|
-
"@babel/preset-env": "^7.
|
|
54
|
+
"@babel/plugin-transform-typescript": "^7.19.0",
|
|
55
|
+
"@babel/preset-env": "^7.19.0",
|
|
55
56
|
"@babel/preset-typescript": "^7.18.6",
|
|
56
|
-
"@commitlint/cli": "^17.
|
|
57
|
-
"@commitlint/config-conventional": "^17.0
|
|
57
|
+
"@commitlint/cli": "^17.1.2",
|
|
58
|
+
"@commitlint/config-conventional": "^17.1.0",
|
|
58
59
|
"@types/jest": "^28.1.8",
|
|
59
60
|
"@types/jsonwebtoken": "^8.5.9",
|
|
60
|
-
"@types/node": "^18.7.
|
|
61
|
+
"@types/node": "^18.7.17",
|
|
61
62
|
"@types/shortid": "^0.0.29",
|
|
62
63
|
"@types/spark-md5": "^3.0.2",
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
64
|
-
"@typescript-eslint/parser": "^5.
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^5.37.0",
|
|
65
|
+
"@typescript-eslint/parser": "^5.37.0",
|
|
65
66
|
"babel-loader": "^8.2.5",
|
|
66
67
|
"babel-plugin-const-enum": "^1.2.0",
|
|
67
68
|
"cross-env": "^7.0.3",
|
|
68
|
-
"eslint": "^8.
|
|
69
|
+
"eslint": "^8.23.1",
|
|
69
70
|
"eslint-config-prettier": "^8.5.0",
|
|
70
71
|
"eslint-plugin-prettier": "^4.2.1",
|
|
71
|
-
"graphql-zeus": "^5.1.
|
|
72
|
+
"graphql-zeus": "^5.1.9",
|
|
72
73
|
"husky": "^8.0.1",
|
|
73
74
|
"jest": "^28.1.3",
|
|
74
75
|
"jest-environment-jsdom": "^28.1.3",
|
|
@@ -80,9 +81,9 @@
|
|
|
80
81
|
"ts-jest": "^28.0.8",
|
|
81
82
|
"ts-node": "^10.9.1",
|
|
82
83
|
"tsup": "^6.2.3",
|
|
83
|
-
"typedoc": "^0.23.
|
|
84
|
+
"typedoc": "^0.23.14",
|
|
84
85
|
"typedoc-plugin-missing-exports": "^1.0.0",
|
|
85
|
-
"typescript": "^4.8.
|
|
86
|
+
"typescript": "^4.8.3"
|
|
86
87
|
},
|
|
87
88
|
"dependencies": {
|
|
88
89
|
"@secrecy/lib-utils": "^1.0.18",
|
|
@@ -90,7 +91,7 @@
|
|
|
90
91
|
"axios": "^0.27.2",
|
|
91
92
|
"bson": "^4.7.0",
|
|
92
93
|
"jsonwebtoken": "^8.5.1",
|
|
93
|
-
"ky": "^0.31.
|
|
94
|
+
"ky": "^0.31.3",
|
|
94
95
|
"libsodium-wrappers": "^0.7.10",
|
|
95
96
|
"shortid": "^2.2.16",
|
|
96
97
|
"spark-md5": "^3.0.2"
|