mtcute/packages/crypto-node/package.json
teidesu 280c9f51aa build: preparing to publish (part 2)
fixed imports, package.json files, improved package generation for certain packages, and more (i'm too lazy to describe all the magic that i've done)
2021-06-06 19:23:43 +03:00

19 lines
717 B
JSON

{
"name": "@mtcute/crypto-node",
"version": "1.0.0",
"description": "Native crypto implementation for NodeJS",
"main": "src/index.ts",
"private": true,
"license": "MIT",
"scripts": {
"build-ts": "tsc",
"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",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"docs": "npx typedoc"
}
}