35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "@mtcute/crypto-node",
|
|
"version": "0.1.0",
|
|
"description": "Native crypto implementation for NodeJS",
|
|
"author": "Alina Sireneva <alina@tei.su>",
|
|
"main": "src/index.ts",
|
|
"private": true,
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build:bin": "node-gyp configure && node-gyp -j 16 build ",
|
|
"build:dev": "node-gyp -j 16 build --debug",
|
|
"build": "pnpm run -w build-package crypto-node",
|
|
"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 \"tests/**/*.spec.ts\"",
|
|
"docs": "typedoc"
|
|
},
|
|
"keepScripts": [
|
|
"install"
|
|
],
|
|
"distOnlyFields": {
|
|
"exports": {
|
|
".": {
|
|
"import": "./esm/index.js",
|
|
"require": "./cjs/index.js"
|
|
}
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@mtcute/core": "workspace:^"
|
|
}
|
|
}
|