You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
800 B
32 lines
800 B
{ |
|
"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", |
|
"build:watch": "npm run clean && tsc -watch" |
|
}, |
|
"devDependencies": { |
|
"@types/node": "^16.11.12", |
|
"rimraf": "^3.0.2", |
|
"typescript": "4.3.5" |
|
}, |
|
"dependencies": { |
|
"@bitwarden/jslib-common": "file:../common", |
|
"electron": "16.1.0", |
|
"electron-log": "4.4.6", |
|
"electron-store": "8.0.1", |
|
"electron-updater": "5.0.0" |
|
} |
|
}
|
|
|