073fb45580
We now support only “current”, “active” or “maintenance” versions according to https://nodejs.org/en/about/releases/, which are compatible with NAPI v6.
29 lines
630 B
JSON
29 lines
630 B
JSON
{
|
|
"name": "matrix-sdk-crypto",
|
|
"version": "0.5.0",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"napi": {
|
|
"name": "matrix-sdk-crypto",
|
|
"triples": {
|
|
"additional": [
|
|
"aarch64-apple-darwin"
|
|
]
|
|
}
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@napi-rs/cli": "^2.9.0",
|
|
"jest": "^28.1.0",
|
|
"typedoc": "^0.22.17"
|
|
},
|
|
"engines": {
|
|
"node": ">= 14"
|
|
},
|
|
"scripts": {
|
|
"build": "napi build --platform --release --strip",
|
|
"test": "jest --verbose",
|
|
"doc": "typedoc --tsconfig ."
|
|
}
|
|
}
|