2018-01-16 20:48:34 +01:00
|
|
|
{
|
|
|
|
"name": "bitwarden",
|
2018-02-10 23:07:46 +01:00
|
|
|
"productName": "Bitwarden",
|
2018-02-10 20:50:36 +01:00
|
|
|
"description": "A secure and free password manager for all of your devices.",
|
2018-02-12 19:21:38 +01:00
|
|
|
"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",
|
2018-02-13 23:27:42 +01:00
|
|
|
"url": "https://github.com/bitwarden/desktop"
|
2018-02-12 19:21:38 +01:00
|
|
|
},
|
|
|
|
"license": "GPL-3.0",
|
2018-01-16 20:48:34 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "tslint src/**/*.ts || true",
|
2018-01-16 21:58:17 +01:00
|
|
|
"lint:fix": "tslint src/**/*.ts --fix",
|
2018-02-15 05:53:52 +01:00
|
|
|
"build": "npm run build:main | npm run build:renderer",
|
2018-01-23 19:59:01 +01:00
|
|
|
"build:main": "webpack --config webpack.main.js",
|
|
|
|
"build:renderer": "webpack --config webpack.renderer.js",
|
|
|
|
"build:renderer:watch": "webpack --config webpack.renderer.js --watch",
|
2018-02-14 21:34:17 +01:00
|
|
|
"electron": "npm run build:main && (electron --inspect=5858 ./build --watch | npm run build:renderer:watch)",
|
2018-02-16 18:30:38 +01:00
|
|
|
"clean:dist": "rimraf ./dist/*",
|
|
|
|
"pack:lin": "npm run clean:dist && build --linux --x64",
|
|
|
|
"pack:mac": "npm run clean:dist && build --mac",
|
|
|
|
"pack:win": "npm run clean:dist && build --win --x64 --ia32",
|
|
|
|
"dist:lin": "npm run build && npm run pack:lin",
|
2018-02-15 05:53:52 +01:00
|
|
|
"dist:mac": "npm run build && npm run pack:mac",
|
2018-02-15 18:25:18 +01:00
|
|
|
"dist:win": "npm run build && npm run pack:win",
|
2018-02-16 18:30:38 +01:00
|
|
|
"publish:lin": "npm run build && npm run clean:dist && build --linux --x64 -p always",
|
|
|
|
"publish:mac": "npm run build && npm run clean:dist && build --mac -p always",
|
|
|
|
"publish:win": "npm run build && npm run clean:dist && build --win --x64 --ia32 -p always"
|
2018-02-12 19:21:38 +01:00
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"appId": "com.bitwarden.desktop",
|
|
|
|
"copyright": "Copyright © 2015-2018 8bit Solutions LLC",
|
|
|
|
"directories": {
|
|
|
|
"buildResources": "resources",
|
|
|
|
"output": "dist",
|
|
|
|
"app": "build"
|
|
|
|
},
|
|
|
|
"mac": {
|
2018-02-15 18:25:18 +01:00
|
|
|
"electronUpdaterCompatibility": ">=0.0.1",
|
2018-02-15 05:53:52 +01:00
|
|
|
"category": "public.app-category.productivity",
|
2018-02-15 18:25:18 +01:00
|
|
|
"target": [
|
2018-02-16 05:25:26 +01:00
|
|
|
"mas-dev",
|
|
|
|
"mas",
|
2018-02-15 05:53:52 +01:00
|
|
|
"dmg",
|
|
|
|
"zip"
|
2018-02-15 18:25:18 +01:00
|
|
|
]
|
2018-02-15 05:53:52 +01:00
|
|
|
},
|
2018-02-15 18:25:18 +01:00
|
|
|
"win": {
|
|
|
|
"electronUpdaterCompatibility": ">=0.0.1",
|
|
|
|
"target": [
|
2018-02-15 05:53:52 +01:00
|
|
|
"portable",
|
2018-02-15 20:05:13 +01:00
|
|
|
"nsis-web"
|
2018-02-15 18:25:18 +01:00
|
|
|
]
|
2018-02-15 05:53:52 +01:00
|
|
|
},
|
|
|
|
"linux": {
|
2018-02-15 18:25:18 +01:00
|
|
|
"category": "Utility",
|
|
|
|
"synopsis": "A secure and free password manager for all of your devices.",
|
2018-02-15 05:53:52 +01:00
|
|
|
"target": [
|
|
|
|
"snap",
|
|
|
|
"rpm",
|
|
|
|
"AppImage",
|
|
|
|
"deb"
|
2018-02-15 18:25:18 +01:00
|
|
|
]
|
2018-02-12 19:21:38 +01:00
|
|
|
},
|
|
|
|
"dmg": {
|
|
|
|
"contents": [
|
|
|
|
{
|
2018-02-13 18:55:45 +01:00
|
|
|
"x": 150,
|
|
|
|
"y": 185,
|
|
|
|
"type": "file"
|
2018-02-12 19:21:38 +01:00
|
|
|
},
|
|
|
|
{
|
2018-02-13 18:55:45 +01:00
|
|
|
"x": 390,
|
|
|
|
"y": 180,
|
|
|
|
"type": "link",
|
|
|
|
"path": "/Applications"
|
2018-02-12 19:21:38 +01:00
|
|
|
}
|
2018-02-13 18:20:25 +01:00
|
|
|
],
|
|
|
|
"window": {
|
|
|
|
"width": 540,
|
|
|
|
"height": 380
|
|
|
|
}
|
2018-02-12 19:21:38 +01:00
|
|
|
},
|
2018-02-15 20:05:13 +01:00
|
|
|
"nsisWeb": {
|
|
|
|
"oneClick": false,
|
|
|
|
"perMachine": true,
|
|
|
|
"allowToChangeInstallationDirectory": true,
|
2018-02-15 20:47:09 +01:00
|
|
|
"artifactName": "${productName} Installer ${version}.${ext}",
|
2018-02-15 20:05:13 +01:00
|
|
|
"uninstallDisplayName": "${productName}",
|
|
|
|
"deleteAppDataOnUninstall": true
|
|
|
|
},
|
|
|
|
"portable": {
|
2018-02-15 20:47:09 +01:00
|
|
|
"artifactName": "${productName} Portable ${version}.${ext}"
|
2018-02-16 05:56:17 +01:00
|
|
|
},
|
|
|
|
"deb": {
|
2018-02-16 18:30:38 +01:00
|
|
|
"depends": [
|
|
|
|
"gconf2",
|
|
|
|
"gconf-service",
|
|
|
|
"libnotify4",
|
|
|
|
"libxtst6",
|
2018-02-16 23:26:48 +01:00
|
|
|
"libnss3",
|
|
|
|
"libsecret-1-0",
|
|
|
|
"libxss1"
|
2018-02-16 18:30:38 +01:00
|
|
|
]
|
2018-02-16 23:35:08 +01:00
|
|
|
},
|
|
|
|
"snap": {
|
|
|
|
"grade": "stable",
|
|
|
|
"stagePackages": [
|
|
|
|
"default",
|
|
|
|
"libsecret-1-0"
|
|
|
|
]
|
2018-02-12 19:21:38 +01:00
|
|
|
}
|
2018-01-16 20:48:34 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-01-16 23:30:57 +01:00
|
|
|
"@bitwarden/jslib": "git+https://github.com/bitwarden/jslib.git",
|
2018-01-23 05:37:36 +01:00
|
|
|
"@types/keytar": "^4.0.1",
|
2018-01-16 20:48:34 +01:00
|
|
|
"clean-webpack-plugin": "^0.1.17",
|
|
|
|
"copy-webpack-plugin": "^4.2.0",
|
|
|
|
"css-loader": "^0.28.7",
|
2018-02-08 16:04:34 +01:00
|
|
|
"electron": "1.8.2",
|
2018-02-12 19:21:38 +01:00
|
|
|
"electron-builder": "^19.56.0",
|
2018-02-11 06:09:47 +01:00
|
|
|
"electron-rebuild": "1.7.3",
|
2018-01-16 23:30:57 +01:00
|
|
|
"electron-reload": "1.2.2",
|
2018-01-16 20:48:34 +01:00
|
|
|
"extract-text-webpack-plugin": "^3.0.1",
|
|
|
|
"file-loader": "^1.1.5",
|
|
|
|
"font-awesome": "4.7.0",
|
2018-01-22 19:27:57 +01:00
|
|
|
"google-fonts-webpack-plugin": "^0.4.4",
|
2018-01-16 20:48:34 +01:00
|
|
|
"html-loader": "^0.5.1",
|
|
|
|
"html-webpack-plugin": "^2.30.1",
|
2018-01-23 05:37:36 +01:00
|
|
|
"node-loader": "^0.6.0",
|
2018-01-21 03:09:04 +01:00
|
|
|
"node-sass": "^4.7.2",
|
2018-02-16 18:30:38 +01:00
|
|
|
"rimraf": "^2.6.2",
|
2018-01-21 03:09:04 +01:00
|
|
|
"sass-loader": "^6.0.6",
|
2018-02-08 16:04:34 +01:00
|
|
|
"ts-loader": "^3.5.0",
|
|
|
|
"tslint": "^5.9.1",
|
2018-01-16 20:48:34 +01:00
|
|
|
"tslint-loader": "^3.5.3",
|
2018-02-08 16:04:34 +01:00
|
|
|
"typescript": "^2.7.1",
|
|
|
|
"webpack": "^3.10.0",
|
2018-01-23 19:59:01 +01:00
|
|
|
"webpack-merge": "^4.1.0",
|
|
|
|
"webpack-node-externals": "^1.6.0"
|
2018-01-16 20:48:34 +01:00
|
|
|
},
|
|
|
|
"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",
|
2018-01-26 16:50:06 +01:00
|
|
|
"angular2-toaster": "4.0.2",
|
2018-02-11 06:09:47 +01:00
|
|
|
"angulartics2": "5.0.1",
|
2018-02-12 22:07:14 +01:00
|
|
|
"core-js": "2.4.1",
|
2018-02-11 06:52:46 +01:00
|
|
|
"desktop-idle": "1.1.1",
|
2018-02-12 22:07:14 +01:00
|
|
|
"electron-updater": "2.20.1",
|
2018-02-13 05:00:54 +01:00
|
|
|
"electron-store": "1.3.0",
|
2018-02-12 22:07:14 +01:00
|
|
|
"keytar": "4.1.0",
|
|
|
|
"rxjs": "5.5.6",
|
|
|
|
"zone.js": "0.8.19"
|
2018-01-16 20:48:34 +01:00
|
|
|
}
|
|
|
|
}
|