mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-11 10:10:25 +01:00
a3d69047c7
* Move/replace submit and userVerification logic from web into the BaseExportComponent Add "@bitwarden/auth" as dependency to the vault-export-ui package New submit logic also checks for password-encrypted exports which will be need for future UI updates on browser and desktop * Remove import/passing of the unneeded UserVerificationService * Remove app-user-verification from browser and desktop components as the new UI is opened as a self-contained dialog --------- Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
27 lines
736 B
JSON
27 lines
736 B
JSON
{
|
|
"name": "@bitwarden/vault-export-ui",
|
|
"version": "0.0.0",
|
|
"description": "Angular components for the Bitwarden vault exporter",
|
|
"keywords": [
|
|
"bitwarden"
|
|
],
|
|
"author": "Bitwarden Inc.",
|
|
"homepage": "https://bitwarden.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bitwarden/clients"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"scripts": {
|
|
"clean": "rimraf dist",
|
|
"build": "npm run clean && tsc",
|
|
"build:watch": "npm run clean && tsc -watch"
|
|
},
|
|
"dependencies": {
|
|
"@bitwarden/common": "file:../../../../common",
|
|
"@bitwarden/angular": "file:../../../../angular",
|
|
"@bitwarden/auth": "file:../../../../auth",
|
|
"@bitwarden/vault-export-core": "file:../vault-export-core"
|
|
}
|
|
}
|