mirror of
https://github.com/bitwarden/browser
synced 2025-12-26 13:13:22 +00:00
* [deps] Platform: Update napi to v3 * fix: upgrade required dependencies * fix: deprecated syntax in package.json * fix: TS code after napi changes * fix: lint * fix: floating promise * fix: libsqlite musl compilation * feat: remove support for musl * fix: sorting lint * fix: logging not working * fix: pre-emptive fix for passkey autofill * fix: rust lint * fix: package-lock * fix: linux type error * fix: windows type error --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Andreas Coroiu <andreas.coroiu@gmail.com> Co-authored-by: Andreas Coroiu <acoroiu@bitwarden.com>
26 lines
544 B
JSON
26 lines
544 B
JSON
{
|
|
"name": "@bitwarden/desktop-napi",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"scripts": {
|
|
"build": "napi build --platform --no-js",
|
|
"test": "cargo test"
|
|
},
|
|
"author": "",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "3.2.0"
|
|
},
|
|
"napi": {
|
|
"binaryName": "desktop_napi",
|
|
"targets": [
|
|
"aarch64-apple-darwin",
|
|
"aarch64-pc-windows-msvc",
|
|
"aarch64-unknown-linux-gnu",
|
|
"armv7-unknown-linux-gnueabihf",
|
|
"i686-pc-windows-msvc",
|
|
"x86_64-unknown-linux-gnu"
|
|
]
|
|
}
|
|
}
|