mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
124 lines
3.3 KiB
JSON
124 lines
3.3 KiB
JSON
{
|
|
"name": "bitwarden",
|
|
"productName": "Bitwarden",
|
|
"description": "A secure and free password manager for all of your devices.",
|
|
"version": "0.0.0",
|
|
"keywords": [
|
|
"bitwarden",
|
|
"password",
|
|
"vault",
|
|
"password manager"
|
|
],
|
|
"author": "8bit Solutions LLC <hello@bitwarden.com> (https://bitwarden.com)",
|
|
"homepage": "https://bitwarden.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bitwarden/desktop.git"
|
|
},
|
|
"license": "GPL-3.0",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"lint": "tslint src/**/*.ts || true",
|
|
"lint:fix": "tslint src/**/*.ts --fix",
|
|
"build:main": "webpack --config webpack.main.js",
|
|
"build:renderer": "webpack --config webpack.renderer.js",
|
|
"build:renderer:watch": "webpack --config webpack.renderer.js --watch",
|
|
"electron": "npm run build:main && (electron ./build --dev --watch | npm run build:renderer:watch)",
|
|
"pack": "electron-builder --dir",
|
|
"dist": "electron-builder"
|
|
},
|
|
"build": {
|
|
"appId": "com.bitwarden.desktop",
|
|
"copyright": "Copyright © 2015-2018 8bit Solutions LLC",
|
|
"directories": {
|
|
"buildResources": "resources",
|
|
"output": "dist",
|
|
"app": "build"
|
|
},
|
|
"mac": {
|
|
"category": "public.app-category.productivity"
|
|
},
|
|
"dmg": {
|
|
"background": "./build/background@2x.png",
|
|
"contents": [
|
|
{
|
|
"x": 396,
|
|
"y": 345,
|
|
"type": "link",
|
|
"path": "/Applications"
|
|
},
|
|
{
|
|
"x": 396,
|
|
"y": 110,
|
|
"type": "file"
|
|
}
|
|
],
|
|
"window": {
|
|
"width": 660,
|
|
"height": 480
|
|
}
|
|
},
|
|
"nsis": {
|
|
"perMachine": true
|
|
},
|
|
"linux": {
|
|
"target": [
|
|
"snap",
|
|
"rpm",
|
|
"AppImage",
|
|
"deb"
|
|
],
|
|
"category": "Utility",
|
|
"synopsis": "A secure and free password manager for all of your devices."
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"@bitwarden/jslib": "git+https://github.com/bitwarden/jslib.git",
|
|
"@types/keytar": "^4.0.1",
|
|
"clean-webpack-plugin": "^0.1.17",
|
|
"copy-webpack-plugin": "^4.2.0",
|
|
"css-loader": "^0.28.7",
|
|
"electron": "1.8.2",
|
|
"electron-builder": "^19.56.0",
|
|
"electron-rebuild": "1.7.3",
|
|
"electron-reload": "1.2.2",
|
|
"extract-text-webpack-plugin": "^3.0.1",
|
|
"file-loader": "^1.1.5",
|
|
"font-awesome": "4.7.0",
|
|
"google-fonts-webpack-plugin": "^0.4.4",
|
|
"html-loader": "^0.5.1",
|
|
"html-webpack-plugin": "^2.30.1",
|
|
"node-loader": "^0.6.0",
|
|
"node-sass": "^4.7.2",
|
|
"sass-loader": "^6.0.6",
|
|
"ts-loader": "^3.5.0",
|
|
"tslint": "^5.9.1",
|
|
"tslint-loader": "^3.5.3",
|
|
"typescript": "^2.7.1",
|
|
"webpack": "^3.10.0",
|
|
"webpack-merge": "^4.1.0",
|
|
"webpack-node-externals": "^1.6.0"
|
|
},
|
|
"dependencies": {
|
|
"@angular/animations": "5.2.0",
|
|
"@angular/common": "5.2.0",
|
|
"@angular/compiler": "5.2.0",
|
|
"@angular/core": "5.2.0",
|
|
"@angular/forms": "5.2.0",
|
|
"@angular/http": "5.2.0",
|
|
"@angular/platform-browser": "5.2.0",
|
|
"@angular/platform-browser-dynamic": "5.2.0",
|
|
"@angular/router": "5.2.0",
|
|
"@angular/upgrade": "5.2.0",
|
|
"angular2-toaster": "4.0.2",
|
|
"angulartics2": "5.0.1",
|
|
"core-js": "2.4.1",
|
|
"desktop-idle": "1.1.1",
|
|
"electron-updater": "2.20.1",
|
|
"electron-store": "1.3.0",
|
|
"keytar": "4.1.0",
|
|
"rxjs": "5.5.6",
|
|
"zone.js": "0.8.19"
|
|
}
|
|
}
|