mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-05 09:10:53 +01:00
37 lines
1.0 KiB
JSON
37 lines
1.0 KiB
JSON
{
|
|
"name": "@bitwarden/clients",
|
|
"version": "0.0.0",
|
|
"description": "Bitwarden Client Applications",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bitwarden/clients.git"
|
|
},
|
|
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
|
|
"license": "GPL-3.0",
|
|
"bugs": {
|
|
"url": "https://github.com/bitwarden/clients/issues"
|
|
},
|
|
"homepage": "https://bitwarden.com",
|
|
"scripts": {
|
|
"lint": "eslint . && prettier --check .",
|
|
"lint:fix": "eslint . --fix",
|
|
"prettier": "prettier --write .",
|
|
"prepare": "husky install"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
"@typescript-eslint/parser": "^5.22.0",
|
|
"eslint": "^8.14.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-import-resolver-typescript": "^2.7.1",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.4.1",
|
|
"prettier": "^2.6.2"
|
|
},
|
|
"lint-staged": {
|
|
"./!(**/jslib)**": "prettier --ignore-unknown --write",
|
|
"*.ts": "eslint --fix"
|
|
}
|
|
}
|