mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-04-26 02:01:00 -04:00
We are effected by https://github.com/yargs/yargs-parser/issues/452 through the transient dependency of jest on yargs
35 lines
887 B
JSON
35 lines
887 B
JSON
{
|
|
"name": "@matrix-org/matrix-sdk-crypto-nodejs",
|
|
"version": "0.1.0-beta.1",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"napi": {
|
|
"name": "matrix-sdk-crypto",
|
|
"triples": {
|
|
"additional": [
|
|
"aarch64-apple-darwin"
|
|
]
|
|
}
|
|
},
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.9.0",
|
|
"jest": "^28.1.0",
|
|
"typedoc": "^0.22.17",
|
|
"yargs-parser": "~21.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">= 14"
|
|
},
|
|
"scripts": {
|
|
"release-build": "napi build --platform --release --strip",
|
|
"build": "napi build --platform",
|
|
"postinstall": "node download-lib.js",
|
|
"test": "jest --verbose --testTimeout 10000",
|
|
"doc": "typedoc --tsconfig ."
|
|
},
|
|
"dependencies": {
|
|
"node-downloader-helper": "^2.1.1"
|
|
}
|
|
}
|