mirror of
https://github.com/bitwarden/desktop.git
synced 2024-10-31 08:10:29 +01:00
33 lines
793 B
JSON
33 lines
793 B
JSON
{
|
|
"name": "@bitwarden/desktop_native",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "index.node",
|
|
"scripts": {
|
|
"build": "napi build dist --platform --release --js true",
|
|
"build:debug": "napi build dist --platform --js true",
|
|
"build:cross-platform": "node build.js",
|
|
"test": "cargo test"
|
|
},
|
|
"author": "",
|
|
"license": "GPL-3.0",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.6.2"
|
|
},
|
|
"napi": {
|
|
"name": "desktop_native",
|
|
"triples": {
|
|
"defaults": true,
|
|
"additional": [
|
|
"x86_64-unknown-linux-musl",
|
|
"aarch64-unknown-linux-gnu",
|
|
"i686-pc-windows-msvc",
|
|
"armv7-unknown-linux-gnueabihf",
|
|
"aarch64-apple-darwin",
|
|
"aarch64-unknown-linux-musl",
|
|
"aarch64-pc-windows-msvc"
|
|
]
|
|
}
|
|
}
|
|
}
|