@bitwarden/cli 2025.2.0 → 2025.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/27520e99d3afa6492c97.module.wasm +0 -0
- package/build/502.js +36 -21
- package/build/bw.js +4936 -3567
- package/build/bw.js.map +1 -1
- package/package.json +7 -3
- package/build/1fa8e310d9cf4f41c266.module.wasm +0 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitwarden/cli",
|
|
3
3
|
"description": "A secure and free password manager for all of your devices.",
|
|
4
|
-
"version": "2025.
|
|
4
|
+
"version": "2025.4.0",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"bitwarden",
|
|
7
7
|
"password",
|
|
@@ -34,18 +34,22 @@
|
|
|
34
34
|
"dist:oss:mac": "npm run build:oss:prod && npm run clean && npm run package:oss:mac",
|
|
35
35
|
"dist:oss:mac-arm64": "npm run build:oss:prod && npm run clean && npm run package:oss:mac-arm64",
|
|
36
36
|
"dist:oss:lin": "npm run build:oss:prod && npm run clean && npm run package:oss:lin",
|
|
37
|
+
"dist:oss:lin-arm64": "npm run build:oss:prod && npm run clean && npm run package:oss:lin-arm64",
|
|
37
38
|
"dist:bit:win": "npm run build:bit:prod && npm run clean && npm run package:bit:win",
|
|
38
39
|
"dist:bit:mac": "npm run build:bit:prod && npm run clean && npm run package:bit:mac",
|
|
39
40
|
"dist:bit:mac-arm64": "npm run build:bit:prod && npm run clean && npm run package:bit:mac-arm64",
|
|
40
41
|
"dist:bit:lin": "npm run build:bit:prod && npm run clean && npm run package:bit:lin",
|
|
42
|
+
"dist:bit:lin-arm64": "npm run build:bit:prod && npm run clean && npm run package:bit:lin-arm64",
|
|
41
43
|
"package:oss:win": "pkg . --targets win-x64 --output ./dist/oss/windows/bw.exe",
|
|
42
44
|
"package:oss:mac": "pkg . --targets macos-x64 --output ./dist/oss/macos/bw",
|
|
43
45
|
"package:oss:mac-arm64": "pkg . --targets macos-arm64 --output ./dist/oss/macos-arm64/bw",
|
|
44
46
|
"package:oss:lin": "pkg . --targets linux-x64 --output ./dist/oss/linux/bw",
|
|
47
|
+
"package:oss:lin-arm64": "pkg . --targets linux-arm64 --output ./dist/oss/linux-arm64/bw",
|
|
45
48
|
"package:bit:win": "pkg . --targets win-x64 --output ./dist/bit/windows/bw.exe",
|
|
46
49
|
"package:bit:mac": "pkg . --targets macos-x64 --output ./dist/bit/macos/bw",
|
|
47
50
|
"package:bit:mac-arm64": "pkg . --targets macos-arm64 --output ./dist/bit/macos-arm64/bw",
|
|
48
51
|
"package:bit:lin": "pkg . --targets linux-x64 --output ./dist/bit/linux/bw",
|
|
52
|
+
"package:bit:lin-arm64": "pkg . --targets linux-arm64 --output ./dist/bit/linux-arm64/bw",
|
|
49
53
|
"test": "jest",
|
|
50
54
|
"test:watch": "jest --watch",
|
|
51
55
|
"test:watch:all": "jest --watchAll"
|
|
@@ -68,11 +72,11 @@
|
|
|
68
72
|
"chalk": "4.1.2",
|
|
69
73
|
"commander": "11.1.0",
|
|
70
74
|
"form-data": "4.0.1",
|
|
71
|
-
"https-proxy-agent": "7.0.
|
|
75
|
+
"https-proxy-agent": "7.0.6",
|
|
72
76
|
"inquirer": "8.2.6",
|
|
73
77
|
"jsdom": "26.0.0",
|
|
74
78
|
"jszip": "3.10.1",
|
|
75
|
-
"koa": "2.
|
|
79
|
+
"koa": "2.16.1",
|
|
76
80
|
"koa-bodyparser": "4.4.1",
|
|
77
81
|
"koa-json": "2.0.2",
|
|
78
82
|
"lowdb": "1.0.0",
|
|
Binary file
|