2022-05-03 21:45:37 +02:00
|
|
|
{
|
2022-05-05 16:54:48 +02:00
|
|
|
"name": "@bitwarden/clients",
|
2022-05-03 21:45:37 +02:00
|
|
|
"version": "0.0.0",
|
|
|
|
"description": "Bitwarden Client Applications",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-05-05 16:54:48 +02:00
|
|
|
"url": "git+https://github.com/bitwarden/clients.git"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
|
|
|
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
|
|
|
|
"license": "GPL-3.0",
|
|
|
|
"bugs": {
|
2022-05-05 16:54:48 +02:00
|
|
|
"url": "https://github.com/bitwarden/clients/issues"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
|
|
|
"homepage": "https://bitwarden.com",
|
|
|
|
"scripts": {
|
2024-01-30 15:50:54 +01:00
|
|
|
"prepare": "husky",
|
2022-08-26 18:09:28 +02:00
|
|
|
"lint": "eslint . --cache --cache-strategy content && prettier --check .",
|
|
|
|
"lint:fix": "eslint . --cache --cache-strategy content --fix",
|
|
|
|
"lint:clear": "rimraf .eslintcache",
|
2023-02-24 16:44:01 +01:00
|
|
|
"prettier": "prettier --cache --write .",
|
2022-06-14 17:10:53 +02:00
|
|
|
"test": "jest",
|
2022-07-26 03:40:32 +02:00
|
|
|
"test:watch": "jest --clearCache && jest --watch",
|
2022-06-16 20:41:22 +02:00
|
|
|
"test:watch:all": "jest --watchAll",
|
2023-05-16 16:20:40 +02:00
|
|
|
"test:types": "node ./scripts/test-types.js",
|
2024-10-08 14:02:58 +02:00
|
|
|
"test:locales": "tsc --project ./scripts/tsconfig.json && node ./scripts/dist/test-locales.js",
|
2024-06-19 15:00:56 +02:00
|
|
|
"docs:json": "compodoc -p ./tsconfig.json -e json -d . --disableRoutesGraph",
|
2023-05-26 15:58:06 +02:00
|
|
|
"storybook": "ng run components:storybook",
|
|
|
|
"build-storybook": "ng run components:build-storybook",
|
2023-06-12 20:59:59 +02:00
|
|
|
"build-storybook:ci": "ng run components:build-storybook --webpack-stats-json",
|
2024-10-22 19:58:13 +02:00
|
|
|
"postinstall": "patch-package && rimraf ./node_modules/@types/glob && rimraf ./node_modules/@types/minimatch"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
2022-06-14 17:10:53 +02:00
|
|
|
"workspaces": [
|
|
|
|
"apps/*",
|
2024-07-01 15:19:29 +02:00
|
|
|
"apps/desktop/desktop_native/napi",
|
2022-06-14 17:10:53 +02:00
|
|
|
"libs/*"
|
|
|
|
],
|
2022-05-03 21:45:37 +02:00
|
|
|
"devDependencies": {
|
2024-07-01 13:09:47 +02:00
|
|
|
"@angular-devkit/build-angular": "16.2.14",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular-eslint/eslint-plugin": "16.3.1",
|
|
|
|
"@angular-eslint/eslint-plugin-template": "16.3.1",
|
|
|
|
"@angular-eslint/template-parser": "16.3.1",
|
2024-07-01 13:09:47 +02:00
|
|
|
"@angular/cli": "16.2.14",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular/compiler-cli": "16.2.12",
|
|
|
|
"@angular/elements": "16.2.12",
|
2024-08-19 14:37:27 +02:00
|
|
|
"@babel/core": "7.24.9",
|
|
|
|
"@babel/preset-env": "7.24.8",
|
2024-06-19 15:00:56 +02:00
|
|
|
"@compodoc/compodoc": "1.1.25",
|
2024-10-01 12:43:19 +02:00
|
|
|
"@electron/notarize": "2.5.0",
|
2024-10-11 15:20:44 +02:00
|
|
|
"@electron/rebuild": "3.7.0",
|
2024-07-01 13:09:47 +02:00
|
|
|
"@ngtools/webpack": "16.2.14",
|
2024-08-23 16:18:08 +02:00
|
|
|
"@storybook/addon-a11y": "8.2.9",
|
|
|
|
"@storybook/addon-actions": "8.2.9",
|
2024-08-16 09:28:29 +02:00
|
|
|
"@storybook/addon-designs": "8.0.3",
|
2024-08-23 16:18:08 +02:00
|
|
|
"@storybook/addon-essentials": "8.2.9",
|
|
|
|
"@storybook/addon-interactions": "8.2.9",
|
|
|
|
"@storybook/addon-links": "8.2.9",
|
|
|
|
"@storybook/angular": "8.2.9",
|
|
|
|
"@storybook/manager-api": "8.2.9",
|
|
|
|
"@storybook/theming": "8.2.9",
|
2024-07-02 17:46:52 +02:00
|
|
|
"@types/argon2-browser": "1.18.4",
|
2024-09-25 15:44:26 +02:00
|
|
|
"@types/chrome": "0.0.272",
|
2024-10-02 14:20:44 +02:00
|
|
|
"@types/firefox-webext-browser": "120.0.4",
|
2024-02-28 02:01:29 +01:00
|
|
|
"@types/inquirer": "8.2.10",
|
2024-02-05 20:54:35 +01:00
|
|
|
"@types/jest": "29.5.12",
|
2024-05-22 14:05:48 +02:00
|
|
|
"@types/jquery": "3.5.30",
|
2024-07-25 13:44:50 +02:00
|
|
|
"@types/jsdom": "21.1.7",
|
2024-10-16 22:35:45 +02:00
|
|
|
"@types/koa": "2.15.0",
|
2024-01-10 04:14:32 +01:00
|
|
|
"@types/koa__multer": "2.0.7",
|
2024-01-09 23:40:17 +01:00
|
|
|
"@types/koa__router": "12.0.4",
|
2023-03-22 18:26:04 +01:00
|
|
|
"@types/koa-bodyparser": "4.3.7",
|
2024-01-09 23:13:03 +01:00
|
|
|
"@types/koa-json": "2.0.23",
|
2024-02-28 01:54:12 +01:00
|
|
|
"@types/lowdb": "1.0.15",
|
2024-01-09 17:32:55 +01:00
|
|
|
"@types/lunr": "2.3.7",
|
2024-10-28 16:13:54 +01:00
|
|
|
"@types/node": "20.17.1",
|
2023-05-23 11:12:58 +02:00
|
|
|
"@types/node-fetch": "2.6.4",
|
2024-02-05 20:03:49 +01:00
|
|
|
"@types/node-forge": "1.3.11",
|
2024-04-24 00:21:25 +02:00
|
|
|
"@types/node-ipc": "9.2.3",
|
2024-10-22 10:07:45 +02:00
|
|
|
"@types/papaparse": "5.3.15",
|
2024-02-28 01:47:46 +01:00
|
|
|
"@types/proper-lockfile": "4.1.4",
|
2024-02-13 22:18:53 +01:00
|
|
|
"@types/retry": "0.12.5",
|
2024-08-28 10:22:38 +02:00
|
|
|
"@types/zxcvbn": "4.4.5",
|
2024-07-16 16:16:31 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "7.16.1",
|
|
|
|
"@typescript-eslint/parser": "7.16.1",
|
2023-11-21 14:49:37 +01:00
|
|
|
"@webcomponents/custom-elements": "1.6.0",
|
2024-10-28 19:08:49 +01:00
|
|
|
"@yao-pkg/pkg": "5.16.1",
|
2024-08-21 19:40:31 +02:00
|
|
|
"autoprefixer": "10.4.20",
|
2024-08-19 14:37:27 +02:00
|
|
|
"babel-loader": "9.1.3",
|
2023-05-02 19:41:49 +02:00
|
|
|
"base64-loader": "1.0.0",
|
2024-08-19 14:37:27 +02:00
|
|
|
"browserslist": "4.23.2",
|
2024-09-17 14:53:24 +02:00
|
|
|
"chromatic": "11.10.2",
|
2024-09-16 22:22:30 +02:00
|
|
|
"concurrently": "9.0.1",
|
2024-03-25 20:38:17 +01:00
|
|
|
"copy-webpack-plugin": "12.0.2",
|
2023-05-02 19:41:49 +02:00
|
|
|
"cross-env": "7.0.3",
|
2024-08-28 02:29:42 +02:00
|
|
|
"css-loader": "7.1.2",
|
2024-09-18 23:41:07 +02:00
|
|
|
"electron": "32.1.1",
|
2024-03-08 15:24:14 +01:00
|
|
|
"electron-builder": "24.13.3",
|
2023-11-27 20:09:04 +01:00
|
|
|
"electron-log": "5.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"electron-reload": "2.0.0-alpha.1",
|
2024-03-15 16:35:00 +01:00
|
|
|
"electron-store": "8.2.0",
|
2024-10-11 15:17:08 +02:00
|
|
|
"electron-updater": "6.3.9",
|
2024-03-08 22:25:25 +01:00
|
|
|
"eslint": "8.57.0",
|
2023-12-05 23:52:44 +01:00
|
|
|
"eslint-config-prettier": "9.1.0",
|
2023-11-30 19:38:44 +01:00
|
|
|
"eslint-import-resolver-typescript": "3.6.1",
|
2023-12-27 21:20:47 +01:00
|
|
|
"eslint-plugin-import": "2.29.1",
|
2023-05-12 17:05:26 +02:00
|
|
|
"eslint-plugin-rxjs": "5.0.3",
|
|
|
|
"eslint-plugin-rxjs-angular": "2.0.1",
|
2024-02-27 17:03:32 +01:00
|
|
|
"eslint-plugin-storybook": "0.8.0",
|
2024-06-21 22:59:01 +02:00
|
|
|
"eslint-plugin-tailwindcss": "3.17.4",
|
2023-05-02 19:41:49 +02:00
|
|
|
"gulp": "4.0.2",
|
|
|
|
"gulp-if": "3.0.0",
|
2023-12-21 16:48:17 +01:00
|
|
|
"gulp-json-editor": "2.6.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"gulp-replace": "1.1.4",
|
2023-11-29 19:44:22 +01:00
|
|
|
"gulp-zip": "6.0.0",
|
2024-04-03 03:12:31 +02:00
|
|
|
"html-loader": "5.0.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"html-webpack-injector": "1.1.4",
|
2024-03-25 20:36:48 +01:00
|
|
|
"html-webpack-plugin": "5.6.0",
|
2024-08-07 14:13:38 +02:00
|
|
|
"husky": "9.1.4",
|
2024-10-28 01:13:32 +01:00
|
|
|
"jest-extended": "^4.0.2",
|
2023-05-19 17:08:22 +02:00
|
|
|
"jest-junit": "16.0.0",
|
2024-05-13 16:16:16 +02:00
|
|
|
"jest-mock-extended": "3.0.7",
|
2024-06-22 02:22:33 +02:00
|
|
|
"jest-preset-angular": "14.1.1",
|
2024-08-07 17:01:06 +02:00
|
|
|
"lint-staged": "15.2.8",
|
2024-09-10 20:19:45 +02:00
|
|
|
"mini-css-extract-plugin": "2.9.1",
|
2022-08-15 15:44:15 +02:00
|
|
|
"node-ipc": "9.2.1",
|
2024-04-03 03:12:59 +02:00
|
|
|
"postcss": "8.4.38",
|
2024-03-27 00:53:34 +01:00
|
|
|
"postcss-loader": "8.1.1",
|
2024-07-25 17:11:55 +02:00
|
|
|
"prettier": "3.3.3",
|
2024-09-30 18:41:47 +02:00
|
|
|
"prettier-plugin-tailwindcss": "0.6.8",
|
2023-05-02 19:41:49 +02:00
|
|
|
"process": "0.11.10",
|
2024-09-24 23:07:17 +02:00
|
|
|
"regedit": "3.0.3",
|
2024-08-16 09:28:29 +02:00
|
|
|
"remark-gfm": "4.0.0",
|
2024-07-23 18:45:42 +02:00
|
|
|
"rimraf": "6.0.1",
|
2024-04-09 03:27:36 +02:00
|
|
|
"sass": "1.74.1",
|
2024-09-09 22:33:19 +02:00
|
|
|
"sass-loader": "16.0.1",
|
2024-08-23 16:18:08 +02:00
|
|
|
"storybook": "8.2.9",
|
2024-03-08 15:44:31 +01:00
|
|
|
"style-loader": "3.3.4",
|
2024-10-17 15:11:08 +02:00
|
|
|
"tailwindcss": "3.4.14",
|
2024-07-16 15:18:29 +02:00
|
|
|
"ts-jest": "29.2.2",
|
2023-12-12 02:53:42 +01:00
|
|
|
"ts-loader": "9.5.1",
|
2023-08-15 21:54:39 +02:00
|
|
|
"tsconfig-paths-webpack-plugin": "4.1.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"type-fest": "2.19.0",
|
2024-02-20 12:14:54 +01:00
|
|
|
"typescript": "5.1.6",
|
2024-10-03 23:42:54 +02:00
|
|
|
"url": "0.11.4",
|
2023-05-02 19:41:49 +02:00
|
|
|
"util": "0.12.5",
|
2024-09-16 15:58:04 +02:00
|
|
|
"wait-on": "8.0.1",
|
2024-08-28 12:46:15 +02:00
|
|
|
"webpack": "5.94.0",
|
2023-08-15 21:54:39 +02:00
|
|
|
"webpack-cli": "5.1.4",
|
2024-03-25 21:27:45 +01:00
|
|
|
"webpack-dev-server": "5.0.4",
|
2023-05-02 19:41:49 +02:00
|
|
|
"webpack-node-externals": "3.0.0"
|
2022-06-02 15:18:29 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular/animations": "16.2.12",
|
2024-03-04 22:04:04 +01:00
|
|
|
"@angular/cdk": "16.2.14",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@angular/common": "16.2.12",
|
|
|
|
"@angular/compiler": "16.2.12",
|
|
|
|
"@angular/core": "16.2.12",
|
|
|
|
"@angular/forms": "16.2.12",
|
|
|
|
"@angular/platform-browser": "16.2.12",
|
|
|
|
"@angular/platform-browser-dynamic": "16.2.12",
|
|
|
|
"@angular/router": "16.2.12",
|
2024-10-18 16:15:10 +02:00
|
|
|
"@bitwarden/sdk-internal": "0.1.6",
|
2024-10-01 16:28:56 +02:00
|
|
|
"@electron/fuses": "1.8.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"@koa/multer": "3.0.2",
|
2024-10-16 22:34:59 +02:00
|
|
|
"@koa/router": "13.1.0",
|
2024-07-11 16:16:42 +02:00
|
|
|
"@microsoft/signalr": "8.0.7",
|
|
|
|
"@microsoft/signalr-protocol-msgpack": "8.0.7",
|
2024-02-12 17:00:41 +01:00
|
|
|
"@ng-select/ng-select": "11.2.0",
|
2024-09-03 14:06:23 +02:00
|
|
|
"argon2": "0.40.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"argon2-browser": "1.18.0",
|
2024-10-03 13:10:48 +02:00
|
|
|
"big-integer": "1.6.52",
|
2022-06-02 17:59:43 +02:00
|
|
|
"bootstrap": "4.6.0",
|
2024-08-28 15:46:50 +02:00
|
|
|
"braintree-web-drop-in": "1.43.0",
|
2024-02-08 18:00:19 +01:00
|
|
|
"buffer": "6.0.3",
|
2023-12-12 02:35:09 +01:00
|
|
|
"bufferutil": "4.0.8",
|
2023-05-02 19:41:49 +02:00
|
|
|
"chalk": "4.1.2",
|
2024-01-31 23:17:04 +01:00
|
|
|
"commander": "11.1.0",
|
2024-03-25 20:31:31 +01:00
|
|
|
"core-js": "3.36.1",
|
2022-06-14 17:10:53 +02:00
|
|
|
"form-data": "4.0.0",
|
2024-09-11 01:01:37 +02:00
|
|
|
"https-proxy-agent": "7.0.5",
|
2023-08-15 21:54:39 +02:00
|
|
|
"inquirer": "8.2.6",
|
2023-12-05 12:16:12 +01:00
|
|
|
"jquery": "3.7.1",
|
2024-09-30 23:18:05 +02:00
|
|
|
"jsdom": "25.0.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"jszip": "3.10.1",
|
2024-10-16 22:35:45 +02:00
|
|
|
"koa": "2.15.3",
|
2023-08-15 21:54:39 +02:00
|
|
|
"koa-bodyparser": "4.4.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"koa-json": "2.0.2",
|
|
|
|
"lowdb": "1.0.0",
|
|
|
|
"lunr": "2.3.9",
|
|
|
|
"multer": "1.4.5-lts.1",
|
2024-02-12 17:00:41 +01:00
|
|
|
"ngx-infinite-scroll": "16.0.0",
|
|
|
|
"ngx-toastr": "17.0.2",
|
2023-08-15 21:54:39 +02:00
|
|
|
"node-fetch": "2.6.12",
|
2023-05-02 19:41:49 +02:00
|
|
|
"node-forge": "1.3.1",
|
2022-09-06 12:15:25 +02:00
|
|
|
"nord": "0.2.1",
|
2024-10-15 11:11:49 +02:00
|
|
|
"oidc-client-ts": "2.4.1",
|
2023-05-02 19:41:49 +02:00
|
|
|
"open": "8.4.2",
|
2023-05-12 17:05:26 +02:00
|
|
|
"papaparse": "5.4.1",
|
2023-11-28 23:17:00 +01:00
|
|
|
"patch-package": "8.0.0",
|
2023-05-02 19:41:49 +02:00
|
|
|
"popper.js": "1.16.1",
|
|
|
|
"proper-lockfile": "4.1.2",
|
2024-01-26 17:22:41 +01:00
|
|
|
"qrcode-parser": "2.1.3",
|
2022-06-02 17:59:43 +02:00
|
|
|
"qrious": "4.0.2",
|
2023-05-12 17:05:26 +02:00
|
|
|
"rxjs": "7.8.1",
|
2023-11-21 14:49:37 +01:00
|
|
|
"tabbable": "6.2.0",
|
2024-10-28 16:13:21 +01:00
|
|
|
"tldts": "6.1.56",
|
2024-06-25 14:04:01 +02:00
|
|
|
"utf-8-validate": "6.0.4",
|
2024-02-12 17:00:41 +01:00
|
|
|
"zone.js": "0.13.3",
|
2023-05-02 19:41:49 +02:00
|
|
|
"zxcvbn": "4.4.2"
|
2022-05-03 21:45:37 +02:00
|
|
|
},
|
2022-06-09 12:51:52 +02:00
|
|
|
"overrides": {
|
2022-06-16 20:41:22 +02:00
|
|
|
"tailwindcss": "$tailwindcss",
|
2023-03-22 18:26:04 +01:00
|
|
|
"@storybook/angular": {
|
2024-02-12 17:00:41 +01:00
|
|
|
"zone.js": "$zone.js"
|
2023-07-03 16:56:14 +02:00
|
|
|
},
|
2024-10-22 19:58:13 +02:00
|
|
|
"replacestream": "4.0.3"
|
2022-06-09 12:51:52 +02:00
|
|
|
},
|
2022-05-03 21:45:37 +02:00
|
|
|
"lint-staged": {
|
2023-02-24 17:09:23 +01:00
|
|
|
"*": "prettier --cache --ignore-unknown --write",
|
2022-08-26 18:09:28 +02:00
|
|
|
"*.ts": "eslint --cache --cache-strategy content --fix"
|
2022-06-02 15:18:29 +02:00
|
|
|
},
|
|
|
|
"engines": {
|
2024-05-30 13:24:06 +02:00
|
|
|
"node": "~20",
|
|
|
|
"npm": "~10"
|
2022-05-03 21:45:37 +02:00
|
|
|
}
|
|
|
|
}
|