bitwarden-desktop/package.json

234 lines
6.7 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-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:06:10 +01:00
"sub:commit": "npm run sub:pull && git commit -am 'update submodule'",
2018-02-20 17:02:47 +01:00
"postinstall": "./node_modules/.bin/electron-rebuild && npm run sub:init",
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-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/*",
2018-02-19 20:58:07 +01:00
"pack:lin": "npm run clean:dist && build --linux --x64 -p never",
"pack:mac": "npm run clean:dist && build --mac -p never",
2018-02-23 04:30:52 +01:00
"pack:win": "npm run clean:dist && build --win --x64 --ia32 -p never -c.win.certificateSubjectName=\"8bit Solutions LLC\"",
"pack:win:ci": "npm run clean:dist && build --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",
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",
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",
2018-02-23 04:30:52 +01:00
"publish:win": "npm run build && npm run clean:dist && build --win --x64 --ia32 -p always -c.win.certificateSubjectName=\"8bit Solutions LLC\""
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",
"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-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-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
},
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-02-12 19:21:38 +01:00
}
2018-01-16 20:48:34 +01:00
},
"devDependencies": {
2018-01-23 05:37:36 +01:00
"@types/keytar": "^4.0.1",
2018-03-01 03:18:36 +01:00
"@types/lunr": "2.1.5",
2018-02-19 22:06:26 +01:00
"@types/node-forge": "0.7.1",
"@types/webcrypto": "0.0.28",
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-23 22:38:10 +01:00
"electron-builder": "^20.1.1",
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-24 04:09:23 +01:00
"electron-log": "2.2.14",
"electron-store": "1.3.0",
"electron-updater": "2.20.1",
2018-02-12 22:07:14 +01:00
"keytar": "4.1.0",
2018-03-01 03:00:59 +01:00
"lunr": "2.1.6",
2018-02-19 22:06:26 +01:00
"node-forge": "0.7.1",
2018-02-12 22:07:14 +01:00
"rxjs": "5.5.6",
"zone.js": "0.8.19"
2018-01-16 20:48:34 +01:00
}
}