2018-05-11 19:47:18 +02:00
|
|
|
{
|
2021-12-08 15:48:33 +01:00
|
|
|
"name": "@bitwarden/cli",
|
|
|
|
"description": "A secure and free password manager for all of your devices.",
|
2022-04-25 17:03:03 +02:00
|
|
|
"version": "1.22.1",
|
2021-12-08 15:48:33 +01:00
|
|
|
"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",
|
2022-05-31 16:29:10 +02:00
|
|
|
"test": "jest",
|
|
|
|
"test:watch": "jest --watch",
|
|
|
|
"test:watch:all": "jest --watchAll"
|
2021-12-08 15:48:33 +01:00
|
|
|
},
|
|
|
|
"bin": {
|
|
|
|
"bw": "build/bw.js"
|
|
|
|
},
|
|
|
|
"pkg": {
|
|
|
|
"assets": "./build/**/*"
|
|
|
|
}
|
2021-12-13 17:18:20 +01:00
|
|
|
}
|