mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-01 08:30:10 +01:00
97598f5ba4
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
74 lines
2.3 KiB
JSON
74 lines
2.3 KiB
JSON
{
|
|
"name": "@bitwarden/cli",
|
|
"description": "A secure and free password manager for all of your devices.",
|
|
"version": "2022.6.2",
|
|
"keywords": [
|
|
"bitwarden",
|
|
"password",
|
|
"vault",
|
|
"password manager",
|
|
"cli"
|
|
],
|
|
"author": "Bitwarden Inc. <hello@bitwarden.com> (https://bitwarden.com)",
|
|
"homepage": "https://bitwarden.com",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/bitwarden/cli"
|
|
},
|
|
"license": "GPL-3.0-only",
|
|
"scripts": {
|
|
"clean": "rimraf dist/**/*",
|
|
"build": "webpack",
|
|
"build:debug": "npm run build && node --inspect ./build/bw.js",
|
|
"build:watch": "webpack --watch",
|
|
"build:prod": "cross-env NODE_ENV=production webpack",
|
|
"build:prod:watch": "cross-env NODE_ENV=production webpack --watch",
|
|
"package": "npm run package:win && npm run package:mac && npm run package:lin",
|
|
"package:win": "pkg . --targets win-x64 --output ./dist/windows/bw.exe --build",
|
|
"package:mac": "pkg . --targets macos-x64 --output ./dist/macos/bw",
|
|
"package:lin": "pkg . --targets linux-x64 --output ./dist/linux/bw",
|
|
"debug": "node --inspect ./build/bw.js",
|
|
"dist": "npm run build:prod && npm run clean && npm run package",
|
|
"dist:win": "npm run build:prod && npm run clean && npm run package:win",
|
|
"dist:mac": "npm run build:prod && npm run clean && npm run package:mac",
|
|
"dist:lin": "npm run build:prod && npm run clean && npm run package:lin",
|
|
"publish:npm": "npm run build:prod && npm publish --access public",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:watch:all": "jest --watchAll"
|
|
},
|
|
"bin": {
|
|
"bw": "build/bw.js"
|
|
},
|
|
"pkg": {
|
|
"assets": "./build/**/*"
|
|
},
|
|
"dependencies": {
|
|
"@koa/multer": "^3.0.0",
|
|
"@koa/router": "^10.1.1",
|
|
"big-integer": "^1.6.51",
|
|
"browser-hrtime": "^1.1.8",
|
|
"chalk": "^4.1.1",
|
|
"commander": "7.2.0",
|
|
"form-data": "4.0.0",
|
|
"https-proxy-agent": "5.0.0",
|
|
"inquirer": "8.0.0",
|
|
"jsdom": "^16.7.0",
|
|
"jszip": "^3.10.0",
|
|
"koa": "^2.13.4",
|
|
"koa-bodyparser": "^4.3.0",
|
|
"koa-json": "^2.0.2",
|
|
"lowdb": "1.0.0",
|
|
"lunr": "^2.3.9",
|
|
"multer": "^1.4.5-lts.1",
|
|
"node-fetch": "^2.6.7",
|
|
"node-forge": "1.3.1",
|
|
"open": "^8.4.0",
|
|
"papaparse": "^5.3.2",
|
|
"proper-lockfile": "^4.1.2",
|
|
"rxjs": "^7.5.5",
|
|
"tldjs": "^2.3.1",
|
|
"zxcvbn": "^4.4.2"
|
|
}
|
|
}
|