mtcute/packages/crypto-node/package.json
Alina Sireneva d88bc0ea60
chore: code quality improvements
improved eslint config, fixed linter issues, added husky
2023-06-05 00:30:48 +00:00

23 lines
836 B
JSON

{
"name": "@mtcute/crypto-node",
"version": "1.0.0",
"description": "Native crypto implementation for NodeJS",
"author": "Alina Sireneva <alina@tei.su>",
"main": "src/index.ts",
"private": true,
"license": "LGPL-3.0",
"scripts": {
"build:bin": "node-gyp configure && node-gyp -j 16 build ",
"build:dev": "node-gyp -j 16 build --debug",
"build": "tsc",
"install": "node-gyp configure && node-gyp -j 16 build",
"rebuild:dev": "node-gyp configure --debug && node-gyp -j 16 rebuild --debug",
"rebuild": "node-gyp configure && node-gyp -j 16 rebuild",
"clean": "node-gyp clean",
"test": "mocha -r ts-node/register \"tests/**/*.spec.ts\"",
"docs": "typedoc"
},
"dependencies": {
"@mtcute/core": "workspace:^1.0.0"
}
}