30 lines
722 B
JSON
30 lines
722 B
JSON
{
|
|
"name": "@mtcute/crypto-node",
|
|
"type": "module",
|
|
"version": "0.16.9",
|
|
"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:^"
|
|
}
|
|
}
|