2021-05-01 21:22:20 +03:00
|
|
|
{
|
2021-08-05 20:38:24 +03:00
|
|
|
"name": "@mtcute/crypto-node",
|
2021-06-06 19:23:43 +03:00
|
|
|
"version": "1.0.0",
|
2021-05-01 21:22:20 +03:00
|
|
|
"description": "Native crypto implementation for NodeJS",
|
2022-07-18 23:32:11 +03:00
|
|
|
"author": "Alina Sireneva <me@tei.su>",
|
2021-05-01 21:22:20 +03:00
|
|
|
"main": "src/index.ts",
|
|
|
|
"private": true,
|
2021-07-19 03:57:47 +03:00
|
|
|
"license": "LGPL-3.0",
|
2021-05-01 21:22:20 +03:00
|
|
|
"scripts": {
|
2021-06-06 19:23:43 +03:00
|
|
|
"build-ts": "tsc",
|
2021-05-01 21:22:20 +03:00
|
|
|
"build:dev": "node-gyp -j 16 build --debug",
|
|
|
|
"build": "node-gyp configure && node-gyp -j 16 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",
|
2022-06-30 16:32:56 +03:00
|
|
|
"test": "mocha -r ts-node/register \"tests/**/*.spec.ts\"",
|
2021-05-01 21:22:20 +03:00
|
|
|
"docs": "npx typedoc"
|
2021-07-25 21:03:40 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-04-28 16:58:09 +03:00
|
|
|
"@mtcute/core": "workspace:^1.0.0"
|
2021-05-01 21:22:20 +03:00
|
|
|
}
|
|
|
|
}
|