@bitwarden/cli 1.19.1 → 1.20.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/build/bw.js +1025 -188
- package/build/bw.js.map +1 -1
- package/build/locales/en/messages.json +12 -0
- package/package.json +96 -96
|
@@ -19,5 +19,17 @@
|
|
|
19
19
|
},
|
|
20
20
|
"importNothingError": {
|
|
21
21
|
"message": "Nothing was imported."
|
|
22
|
+
},
|
|
23
|
+
"verificationCodeRequired": {
|
|
24
|
+
"message": "Verification code is required."
|
|
25
|
+
},
|
|
26
|
+
"invalidVerificationCode": {
|
|
27
|
+
"message": "Invalid verification code."
|
|
28
|
+
},
|
|
29
|
+
"masterPassRequired": {
|
|
30
|
+
"message": "Master password is required."
|
|
31
|
+
},
|
|
32
|
+
"invalidMasterPassword": {
|
|
33
|
+
"message": "Invalid master password."
|
|
22
34
|
}
|
|
23
35
|
}
|
package/package.json
CHANGED
|
@@ -1,98 +1,98 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
2
|
+
"name": "@bitwarden/cli",
|
|
3
|
+
"description": "A secure and free password manager for all of your devices.",
|
|
4
|
+
"version": "1.20.0",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"bitwarden",
|
|
7
|
+
"password",
|
|
8
|
+
"vault",
|
|
9
|
+
"password manager",
|
|
10
|
+
"cli"
|
|
11
|
+
],
|
|
12
|
+
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
|
|
13
|
+
"homepage": "https://bitwarden.com",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "https://github.com/bitwarden/cli"
|
|
17
|
+
},
|
|
18
|
+
"license": "GPL-3.0-only",
|
|
19
|
+
"scripts": {
|
|
20
|
+
"sub:init": "git submodule update --init --recursive",
|
|
21
|
+
"sub:update": "git submodule update --remote",
|
|
22
|
+
"sub:pull": "git submodule foreach git pull origin master",
|
|
23
|
+
"clean": "rimraf dist/**/*",
|
|
24
|
+
"symlink:win": "rmdir /S /Q ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
|
|
25
|
+
"symlink:mac": "npm run symlink:lin",
|
|
26
|
+
"symlink:lin": "rm -rf ./jslib && ln -s ../jslib ./jslib",
|
|
27
|
+
"build": "webpack",
|
|
28
|
+
"build:debug": "npm run build && node --inspect ./build/bw.js",
|
|
29
|
+
"build:watch": "webpack --watch",
|
|
30
|
+
"build:prod": "cross-env NODE_ENV=production webpack",
|
|
31
|
+
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
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
|
+
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
|
|
35
|
+
"package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
|
|
36
|
+
"debug": "node --inspect ./build/bw.js",
|
|
37
|
+
"dist": "npm run build:prod && npm run clean && npm run package",
|
|
38
|
+
"dist:win": "npm run build:prod && npm run clean && npm run package:win",
|
|
39
|
+
"dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
|
|
40
|
+
"dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
|
|
41
|
+
"publish:npm": "npm run build:prod && npm publish --access public",
|
|
42
|
+
"lint": "tslint 'src/**/*.ts' 'spec/**/*.ts'",
|
|
43
|
+
"lint:fix": "tslint 'src/**/*.ts' 'spec/**/*.ts' --fix"
|
|
44
|
+
},
|
|
45
|
+
"bin": {
|
|
46
|
+
"bw": "build/bw.js"
|
|
47
|
+
},
|
|
48
|
+
"pkg": {
|
|
49
|
+
"assets": "./build/**/*"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/inquirer": "^7.3.1",
|
|
53
|
+
"@types/jsdom": "^16.2.10",
|
|
54
|
+
"@types/lowdb": "^1.0.10",
|
|
55
|
+
"@types/lunr": "^2.3.3",
|
|
56
|
+
"@types/node": "^14.17.1",
|
|
57
|
+
"@types/node-fetch": "^2.5.10",
|
|
58
|
+
"@types/node-forge": "^0.9.7",
|
|
59
|
+
"@types/papaparse": "^5.2.5",
|
|
60
|
+
"@types/tldjs": "^2.3.0",
|
|
61
|
+
"@types/zxcvbn": "^4.4.1",
|
|
62
|
+
"clean-webpack-plugin": "^3.0.0",
|
|
63
|
+
"copy-webpack-plugin": "^6.4.0",
|
|
64
|
+
"cross-env": "^7.0.3",
|
|
65
|
+
"pkg": "^5.1.0",
|
|
66
|
+
"ts-loader": "^8.2.0",
|
|
67
|
+
"tsconfig-paths-webpack-plugin": "^3.5.1",
|
|
68
|
+
"tslint": "^6.1.3",
|
|
69
|
+
"tslint-loader": "^3.5.4",
|
|
70
|
+
"typescript": "4.1.5",
|
|
71
|
+
"webpack": "^4.46.0",
|
|
72
|
+
"webpack-cli": "^4.7.0",
|
|
73
|
+
"webpack-node-externals": "^3.0.0"
|
|
74
|
+
},
|
|
75
|
+
"dependencies": {
|
|
76
|
+
"big-integer": "1.6.48",
|
|
77
|
+
"browser-hrtime": "^1.1.8",
|
|
78
|
+
"chalk": "^4.1.1",
|
|
79
|
+
"commander": "7.2.0",
|
|
80
|
+
"form-data": "4.0.0",
|
|
81
|
+
"https-proxy-agent": "5.0.0",
|
|
82
|
+
"inquirer": "8.0.0",
|
|
83
|
+
"jsdom": "^16.5.3",
|
|
84
|
+
"lowdb": "1.0.0",
|
|
85
|
+
"lunr": "^2.3.9",
|
|
86
|
+
"node-fetch": "^2.6.1",
|
|
87
|
+
"node-forge": "0.10.0",
|
|
88
|
+
"open": "^8.0.8",
|
|
89
|
+
"papaparse": "^5.3.0",
|
|
90
|
+
"rxjs": "6.6.7",
|
|
91
|
+
"tldjs": "^2.3.1",
|
|
92
|
+
"zxcvbn": "^4.4.2"
|
|
93
|
+
},
|
|
94
|
+
"engines": {
|
|
95
|
+
"node": "~14",
|
|
96
|
+
"npm": "~7"
|
|
97
|
+
}
|
|
98
98
|
}
|