@bitwarden/cli 1.17.1 → 1.19.1
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/build/bw.js +30968 -29876
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +23 -23
- package/package.json +4 -3
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
{
|
|
2
|
-
"bitwarden": {
|
|
3
|
-
"message": "Bitwarden"
|
|
4
|
-
},
|
|
5
|
-
"authenticatorAppTitle": {
|
|
6
|
-
"message": "Authenticator App"
|
|
7
|
-
},
|
|
8
|
-
"yubiKeyTitle": {
|
|
9
|
-
"message": "YubiKey OTP Security Key"
|
|
10
|
-
},
|
|
11
|
-
"emailTitle": {
|
|
12
|
-
"message": "Email"
|
|
13
|
-
},
|
|
14
|
-
"noneFolder": {
|
|
15
|
-
"message": "No Folder"
|
|
16
|
-
},
|
|
17
|
-
"importFormatError": {
|
|
18
|
-
"message": "Data is not formatted correctly. Please check your import file and try again."
|
|
19
|
-
},
|
|
20
|
-
"importNothingError": {
|
|
21
|
-
"message": "Nothing was imported."
|
|
22
|
-
}
|
|
23
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"bitwarden": {
|
|
3
|
+
"message": "Bitwarden"
|
|
4
|
+
},
|
|
5
|
+
"authenticatorAppTitle": {
|
|
6
|
+
"message": "Authenticator App"
|
|
7
|
+
},
|
|
8
|
+
"yubiKeyTitle": {
|
|
9
|
+
"message": "YubiKey OTP Security Key"
|
|
10
|
+
},
|
|
11
|
+
"emailTitle": {
|
|
12
|
+
"message": "Email"
|
|
13
|
+
},
|
|
14
|
+
"noneFolder": {
|
|
15
|
+
"message": "No Folder"
|
|
16
|
+
},
|
|
17
|
+
"importFormatError": {
|
|
18
|
+
"message": "Data is not formatted correctly. Please check your import file and try again."
|
|
19
|
+
},
|
|
20
|
+
"importNothingError": {
|
|
21
|
+
"message": "Nothing was imported."
|
|
22
|
+
}
|
|
23
|
+
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitwarden/cli",
|
|
3
3
|
"description": "A secure and free password manager for all of your devices.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.19.1",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitwarden",
|
|
7
7
|
"password",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"build:watch": "webpack --watch",
|
|
30
30
|
"build:prod": "cross-env NODE_ENV=production webpack",
|
|
31
31
|
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
32
|
-
"package": "npm run package:win
|
|
33
|
-
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe",
|
|
32
|
+
"package": "npm run package:win && npm run package:mac && npm run package:lin",
|
|
33
|
+
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe --build",
|
|
34
34
|
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
|
|
35
35
|
"package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
|
|
36
36
|
"debug": "node --inspect ./build/bw.js",
|
|
@@ -87,6 +87,7 @@
|
|
|
87
87
|
"node-forge": "0.10.0",
|
|
88
88
|
"open": "^8.0.8",
|
|
89
89
|
"papaparse": "^5.3.0",
|
|
90
|
+
"rxjs": "6.6.7",
|
|
90
91
|
"tldjs": "^2.3.1",
|
|
91
92
|
"zxcvbn": "^4.4.2"
|
|
92
93
|
},
|