mtcute/packages/crypto-node/package.json
2024-08-21 17:56:12 +00:00

30 lines
798 B
JSON

{
"name": "@mtcute/crypto-node",
"type": "module",
"version": "0.16.7",
"private": true,
"description": "Native crypto implementation for NodeJS",
"author": "alina sireneva <alina@tei.su>",
"license": "MIT",
"sideEffects": false,
"exports": {
".": "./src/index.ts",
"./native.js": "./src/native.cjs"
},
"scripts": {
"build": "pnpm run -w build-package crypto-node",
"install": "node-gyp-build",
"rebuild": "node-gyp configure && node-gyp -j 16 rebuild",
"clean": "node-gyp clean"
},
"keepScripts": [
"install"
],
"dependencies": {
"@mtcute/node": "workspace:^",
"node-gyp-build": "4.8.1"
},
"devDependencies": {
"@mtcute/test": "workspace:^"
}
}