mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-08 09:43:42 +01:00
19f547e638
* Move ownership of biometrics to key-management * Move biometrics ipc ownership to km * Move further files to km; split off preload / ipc to km * Fix linting * Fix linting * Fix tests * Fix tests * Update .github/CODEOWNERS Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Update .github/CODEOWNERS Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Change ownership of native messaging to key-management * Move biometrics to libs/key-management * Add README to capital whitelist * Update package-lock.json * Move km to key-management * Move km to key-management * Fix build for cli * Import fixes * Apply prettier fix * Fix test * Import fixes * Import fixes * Update libs/key-management/README.md Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Update libs/key-management/package.json Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com> * Update lock file * Change imports to top level km package --------- Co-authored-by: Maciej Zieniuk <167752252+mzieniukbw@users.noreply.github.com>
26 lines
658 B
JSON
26 lines
658 B
JSON
{
|
|
"name": "@bitwarden/key-management",
|
|
"version": "0.0.0",
|
|
"description": "Common code used across Bitwarden JavaScript projects.",
|
|
"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/angular": "file:../angular",
|
|
"@bitwarden/common": "file:../common",
|
|
"@bitwarden/components": "file:../components"
|
|
}
|
|
}
|