mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-02 08:40:08 +01:00
95a35cd90e
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
25 lines
1.1 KiB
JSON
25 lines
1.1 KiB
JSON
{
|
|
"name": "@bitwarden/browser",
|
|
"version": "2022.10.0",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"build:mv3": "cross-env MANIFEST_VERSION=3 webpack",
|
|
"build:watch": "webpack --watch",
|
|
"build:watch:mv3": "cross-env MANIFEST_VERSION=3 webpack --watch",
|
|
"build:prod": "cross-env NODE_ENV=production webpack",
|
|
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
"dist": "npm run build:prod && gulp dist",
|
|
"dist:chrome": "npm run build:prod && gulp dist:chrome",
|
|
"dist:chrome:mv3": "cross-env MANIFEST_VERSION=3 npm run build:prod && cross-env MANIFEST_VERSION=3 gulp dist:chrome",
|
|
"dist:firefox": "npm run build:prod && gulp dist:firefox",
|
|
"dist:opera": "npm run build:prod && gulp dist:opera",
|
|
"dist:safari": "npm run build:prod && gulp dist:safari",
|
|
"dist:safari:mas": "npm run build:prod && gulp dist:safari:mas",
|
|
"dist:safari:masdev": "npm run build:prod && gulp dist:safari:masdev",
|
|
"dist:safari:dmg": "npm run build:prod && gulp dist:safari:dmg",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:watch:all": "jest --watchAll"
|
|
}
|
|
}
|