mtcute/packages/crypto-node/package.json
2024-11-20 19:52:39 +03:00

30 lines
770 B
JSON

{
"name": "@mtcute/crypto-node",
"type": "module",
"version": "0.17.0",
"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": {
"install": "node-gyp-build",
"rebuild": "node-gyp configure && node-gyp -j 16 rebuild",
"clean": "node-gyp clean"
},
"dependencies": {
"@mtcute/node": "workspace:^",
"node-gyp-build": "4.8.1"
},
"devDependencies": {
"@mtcute/test": "workspace:^"
},
"fuman": {
"jsr": "skip",
"keepScripts": ["install"]
}
}