mtcute/packages/crypto-node/package.json

31 lines
798 B
JSON
Raw Normal View History

{
2021-08-05 20:38:24 +03:00
"name": "@mtcute/crypto-node",
2024-07-24 14:31:58 +03:00
"version": "0.16.2",
"description": "Native crypto implementation for NodeJS",
2024-03-20 13:56:18 +03:00
"author": "alina sireneva <alina@tei.su>",
"private": true,
2023-10-12 07:26:26 +03:00
"license": "MIT",
"type": "module",
"sideEffects": false,
"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"
2021-07-25 21:03:40 +03:00
},
2023-11-01 22:56:23 +03:00
"keepScripts": [
"install"
],
"exports": {
".": "./src/index.ts",
"./native.js": "./src/native.cjs"
},
2021-07-25 21:03:40 +03:00
"dependencies": {
"@mtcute/node": "workspace:^",
"node-gyp-build": "4.8.1"
},
"devDependencies": {
"@mtcute/test": "workspace:^"
}
}