1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-13 01:58:44 +02:00
bitwarden-browser/electron/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
800 B
JSON
Raw Normal View History

{
"name": "@bitwarden/jslib-electron",
"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/jslib"
},
"license": "GPL-3.0",
"scripts": {
"clean": "rimraf dist/**/*",
"build": "npm run clean && tsc",
2022-02-22 15:39:11 +01:00
"build:watch": "npm run clean && tsc -watch"
},
"devDependencies": {
"@types/node": "^16.11.12",
"rimraf": "^3.0.2",
2021-12-09 15:00:26 +01:00
"typescript": "4.3.5"
},
"dependencies": {
"@bitwarden/jslib-common": "file:../common",
"electron": "16.1.0",
"electron-log": "4.4.6",
2021-09-24 16:27:22 +02:00
"electron-store": "8.0.1",
"electron-updater": "5.0.0"
}
}