bitwarden-desktop/package.json

290 lines
9.1 KiB
JSON
Raw Normal View History

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": {
2018-08-25 14:30:30 +02:00
"start": "cross-env ELECTRON_IS_DEV=0 ELECTRON_NO_UPDATER=1 electron ./build",
2018-02-20 17:02:47 +01:00
"sub:init": "git submodule update --init --recursive",
"sub:update": "git submodule update --remote",
2018-03-04 06:04:07 +01:00
"sub:pull": "git submodule foreach git pull origin master",
2018-03-04 06:08:13 +01:00
"sub:commit": "npm run sub:pull && git commit -am \"update submodule\"",
2019-02-13 16:06:58 +01:00
"postinstall": "./node_modules/.bin/electron-rebuild && npm run sub:init && gulp postinstall",
2019-09-25 22:10:00 +02:00
"symlink:win": "rm -rf ./jslib && cmd /c mklink /J .\\jslib ..\\jslib",
2018-01-16 20:48:34 +01:00
"lint": "tslint src/**/*.ts || true",
2018-01-16 21:58:17 +01:00
"lint:fix": "tslint src/**/*.ts --fix",
2018-04-25 22:48:28 +02:00
"build": "concurrently -n Main,Rend -c yellow,cyan \"npm run build:main\" \"npm run build:renderer\"",
2018-01-23 19:59:01 +01:00
"build:main": "webpack --config webpack.main.js",
2018-08-08 18:47:54 +02:00
"build:renderer": "gulp prebuild:renderer && webpack --config webpack.renderer.js",
"build:renderer:watch": "gulp prebuild:renderer && webpack --config webpack.renderer.js --watch",
2018-04-25 22:48:28 +02:00
"electron": "npm run build:main && concurrently -k -n Main,Rend -c yellow,cyan \"electron --inspect=5858 ./build --watch\" \"npm run build:renderer:watch\"",
2018-02-16 18:30:38 +01:00
"clean:dist": "rimraf ./dist/*",
2018-07-30 23:10:28 +02:00
"clean:l10n": "git push origin --delete l10n_master",
2019-07-24 21:30:36 +02:00
"pack:lin": "npm run clean:dist && electron-builder --linux --x64 -p never",
"pack:mac": "npm run clean:dist && electron-builder --mac -p never",
2019-09-26 02:59:50 +02:00
"pack:mac:mas": "npm run clean:dist && electron-builder --mac mas -p never",
"pack:mac:masdev": "npm run clean:dist && electron-builder --mac mas-dev -p never",
2019-07-24 21:30:36 +02:00
"pack:win": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never -c.win.certificateSubjectName=\"8bit Solutions LLC\"",
"pack:win:ci": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never",
2018-02-16 18:30:38 +01:00
"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",
2019-09-28 05:33:14 +02:00
"dist:mac:mas": "npm run build && npm run pack:mac:mas && gulp pkgMas",
2019-09-26 02:59:50 +02:00
"dist:mac:masdev": "npm run build && npm run pack:mac:masdev",
2018-02-15 18:25:18 +01:00
"dist:win": "npm run build && npm run pack:win",
2018-02-23 04:30:52 +01:00
"dist:win:ci": "npm run build && npm run pack:win:ci",
2019-07-24 21:30:36 +02:00
"publish:lin": "npm run build && npm run clean:dist && electron-builder --linux --x64 -p always",
"publish:mac": "npm run build && npm run clean:dist && electron-builder --mac -p always",
2019-09-28 05:33:14 +02:00
"publish:mac:mas": "dist:mac:mas && npm run upload:mas",
2019-09-28 05:25:41 +02:00
"publish:win": "npm run build && npm run clean:dist && electron-builder --win --x64 --ia32 -p always -c.win.certificateSubjectName=\"8bit Solutions LLC\"",
"upload:mas": "xcrun altool --upload-app --type osx --file \"./dist/mas/Bitwarden-mas-signed.pkg\" --username $APPLE_ID_USERNAME --password $APPLE_ID_PASSWORD"
2018-02-12 19:21:38 +01:00
},
"build": {
"appId": "com.bitwarden.desktop",
"copyright": "Copyright © 2015-2019 8bit Solutions LLC",
2018-02-12 19:21:38 +01:00
"directories": {
"buildResources": "resources",
"output": "dist",
"app": "build"
},
2019-09-27 18:03:12 +02:00
"afterSign": "scripts/after-sign.js",
2018-02-12 19:21:38 +01:00
"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",
2019-08-26 20:28:28 +02:00
"extraFiles": [
"PlugIns/"
],
2019-07-24 21:30:36 +02:00
"darkModeSupport": true,
2019-07-24 22:37:23 +02:00
"gatekeeperAssess": false,
"hardenedRuntime": true,
"entitlements": "resources/entitlements.mac.plist",
"entitlementsInherit": "resources/entitlements.mac.plist",
"extendInfo": {
2018-02-25 06:09:09 +01:00
"ITSAppUsesNonExemptEncryption": false,
"CFBundleLocalizations": [
"en",
"cs",
"da",
"de",
"es",
"et",
"fi",
"fr",
"hr",
"hu",
"id",
"it",
"ja",
"nb",
"nl",
"pl",
"pt-BR",
"pt-PT",
"ro",
"ru",
"sk",
"sv",
"tr",
"uk",
"vi",
"zh-Hans",
"zh-Hant"
],
"CFBundleDevelopmentRegion": "en"
},
2018-02-15 18:25:18 +01:00
"target": [
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-21 05:17:35 +01:00
"nsis-web",
"appx"
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": [
2018-02-21 19:36:00 +01:00
"deb",
"freebsd",
2018-02-15 05:53:52 +01:00
"rpm",
"AppImage",
2018-02-21 19:36:00 +01:00
"snap"
2018-02-15 18:25:18 +01:00
]
2018-02-12 19:21:38 +01:00
},
"dmg": {
2018-02-20 20:53:08 +01:00
"icon": "dmg.icns",
2018-02-12 19:21:38 +01:00
"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
},
2019-07-24 22:37:23 +02:00
"mas": {
"entitlements": "resources/entitlements.mas.plist",
2019-08-02 14:41:53 +02:00
"entitlementsInherit": "resources/entitlements.mas.inherit.plist",
"hardenedRuntime": false
2019-07-24 22:37:23 +02:00
},
2018-02-15 20:05:13 +01:00
"nsisWeb": {
"oneClick": false,
"perMachine": true,
"allowToChangeInstallationDirectory": true,
2018-02-21 19:26:09 +01:00
"artifactName": "${productName}-Installer-${version}.${ext}",
2018-02-15 20:05:13 +01:00
"uninstallDisplayName": "${productName}",
"deleteAppDataOnUninstall": true
},
"portable": {
2018-02-21 19:26:09 +01:00
"artifactName": "${productName}-Portable-${version}.${ext}"
},
2018-02-21 05:17:35 +01:00
"appx": {
2018-02-21 19:26:09 +01:00
"artifactName": "${productName}-${version}-${arch}.${ext}",
2018-02-21 05:17:35 +01:00
"backgroundColor": "#3c8dbc",
"applicationId": "bitwardendesktop",
"identityName": "8bitSolutionsLLC.bitwardendesktop",
"publisher": "CN=14D52771-DE3C-4886-B8BF-825BA7690418",
"publisherDisplayName": "8bit Solutions LLC",
"languages": [
"en-US"
]
},
"deb": {
2018-02-21 19:26:09 +01:00
"artifactName": "${productName}-${version}-${arch}.${ext}",
2018-02-16 18:30:38 +01:00
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libxtst6",
"libnss3",
"libsecret-1-0",
"libxss1"
2018-02-16 18:30:38 +01:00
]
2018-02-21 19:26:09 +01:00
},
"appImage": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"rpm": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
},
"freebsd": {
"artifactName": "${productName}-${version}-${arch}.${ext}"
2018-04-17 21:00:50 +02:00
},
"snap": {
"confinement": "strict",
2018-04-19 21:34:21 +02:00
"plugs": [
"default",
"password-manager-service"
],
"stagePackages": [
2018-11-07 18:49:33 +01:00
"default"
2019-08-01 03:35:43 +02:00
],
2019-08-01 05:29:56 +02:00
"publish": [
"github"
]
2018-04-19 21:34:21 +02:00
}
2018-01-16 20:48:34 +01:00
},
"devDependencies": {
2019-03-29 05:03:27 +01:00
"@angular/compiler-cli": "^7.2.11",
2019-01-22 05:38:27 +01:00
"@ngtools/webpack": "^7.2.2",
2018-08-13 15:43:46 +02:00
"@types/lunr": "^2.1.6",
2018-09-12 19:12:44 +02:00
"@types/node-forge": "^0.7.5",
"@types/papaparse": "^4.5.3",
"@types/semver": "^5.5.0",
"@types/webcrypto": "^0.0.28",
"@types/webpack": "^4.4.11",
"@types/zxcvbn": "4.4.0",
2018-09-12 19:12:44 +02:00
"clean-webpack-plugin": "^0.1.19",
"concurrently": "^4.0.1",
2018-01-16 20:48:34 +01:00
"copy-webpack-plugin": "^4.2.0",
2018-09-12 19:12:44 +02:00
"cross-env": "^5.2.0",
"css-loader": "^1.0.0",
2018-08-08 18:47:54 +02:00
"del": "^3.0.0",
2019-07-24 20:32:27 +02:00
"electron": "5.0.8",
2019-07-24 21:30:36 +02:00
"electron-builder": "21.1.5",
2019-07-24 22:37:23 +02:00
"electron-notarize": "^0.1.1",
2019-07-24 20:32:27 +02:00
"electron-rebuild": "^1.8.5",
"electron-reload": "^1.4.1",
2018-09-12 19:12:44 +02:00
"extract-text-webpack-plugin": "next",
"file-loader": "^2.0.0",
2018-01-16 20:48:34 +01:00
"font-awesome": "4.7.0",
2018-11-27 18:22:18 +01:00
"gulp": "^4.0.0",
2018-08-08 18:47:54 +02:00
"gulp-google-webfonts": "^2.0.0",
2018-09-12 19:12:44 +02:00
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"ngx-infinite-scroll": "7.0.1",
2019-07-25 15:30:20 +02:00
"node-abi": "^2.9.0",
2018-01-23 05:37:36 +01:00
"node-loader": "^0.6.0",
2019-03-29 05:03:27 +01:00
"node-sass": "^4.11.0",
2018-02-16 18:30:38 +01:00
"rimraf": "^2.6.2",
2018-09-12 19:12:44 +02:00
"sass-loader": "^7.1.0",
2019-01-22 05:38:27 +01:00
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-loader": "^3.5.4",
"typescript": "3.2.4",
"webpack": "^4.29.0",
"webpack-cli": "^3.2.1",
"webpack-merge": "^4.2.1",
2018-09-12 19:12:44 +02:00
"webpack-node-externals": "^1.7.2"
2018-01-16 20:48:34 +01:00
},
"dependencies": {
2019-01-22 05:38:27 +01:00
"@angular/animations": "7.2.1",
"@angular/cdk": "7.2.1",
2019-01-22 05:38:27 +01:00
"@angular/common": "7.2.1",
"@angular/compiler": "7.2.1",
"@angular/core": "7.2.1",
"@angular/forms": "7.2.1",
"@angular/http": "7.2.1",
"@angular/platform-browser": "7.2.1",
"@angular/platform-browser-dynamic": "7.2.1",
"@angular/router": "7.2.1",
"@angular/upgrade": "7.2.1",
2019-07-26 02:41:50 +02:00
"@aspnet/signalr": "1.1.4",
"@aspnet/signalr-protocol-msgpack": "1.1.0",
2018-09-12 19:12:44 +02:00
"angular2-toaster": "6.1.0",
"angulartics2": "6.3.0",
2018-11-10 04:31:21 +01:00
"big-integer": "1.6.36",
2019-01-22 05:38:27 +01:00
"core-js": "2.6.2",
"desktop-idle": "1.1.2",
2018-12-18 23:00:23 +01:00
"duo_web_sdk": "git+https://github.com/duosecurity/duo_web_sdk.git",
2018-12-26 20:55:27 +01:00
"electron-log": "2.2.17",
2019-03-12 03:37:13 +01:00
"electron-store": "1.3.0",
2019-07-24 21:30:36 +02:00
"electron-updater": "4.1.2",
2019-08-01 05:42:24 +02:00
"keytar": "4.13.0",
2018-09-04 03:51:28 +02:00
"lunr": "2.3.3",
2018-09-12 19:12:44 +02:00
"node-forge": "0.7.6",
2018-07-22 04:22:24 +02:00
"nord": "0.2.1",
2018-09-12 19:12:44 +02:00
"papaparse": "4.6.0",
2019-01-22 05:38:27 +01:00
"rxjs": "6.3.3",
2019-02-13 16:06:58 +01:00
"sweetalert": "2.1.2",
2019-01-22 05:38:27 +01:00
"zone.js": "0.8.28",
"zxcvbn": "4.4.2"
2018-01-16 20:48:34 +01:00
}
}