2021-05-01 21:22:20 +03:00
|
|
|
{
|
2021-08-05 20:38:24 +03:00
|
|
|
"name": "@mtcute/crypto-node",
|
2024-03-24 01:57:57 +03:00
|
|
|
"version": "0.9.0",
|
2021-05-01 21:22:20 +03:00
|
|
|
"description": "Native crypto implementation for NodeJS",
|
2024-03-20 13:56:18 +03:00
|
|
|
"author": "alina sireneva <alina@tei.su>",
|
2021-05-01 21:22:20 +03:00
|
|
|
"main": "src/index.ts",
|
|
|
|
"private": true,
|
2023-10-12 07:26:26 +03:00
|
|
|
"license": "MIT",
|
2023-10-16 19:23:53 +03:00
|
|
|
"type": "module",
|
2024-03-05 17:36:26 +03:00
|
|
|
"sideEffects": false,
|
2021-05-01 21:22:20 +03:00
|
|
|
"scripts": {
|
2023-06-05 03:30:48 +03:00
|
|
|
"build:bin": "node-gyp configure && node-gyp -j 16 build ",
|
2021-05-01 21:22:20 +03:00
|
|
|
"build:dev": "node-gyp -j 16 build --debug",
|
2023-10-16 19:23:53 +03:00
|
|
|
"build": "pnpm run -w build-package crypto-node",
|
2021-05-01 21:22:20 +03:00
|
|
|
"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",
|
2023-11-09 00:20:43 +03:00
|
|
|
"clean": "node-gyp clean"
|
2021-07-25 21:03:40 +03:00
|
|
|
},
|
2023-11-01 22:56:23 +03:00
|
|
|
"keepScripts": [
|
|
|
|
"install"
|
|
|
|
],
|
2024-02-28 00:33:23 +03:00
|
|
|
"exports": {
|
|
|
|
".": "./src/index.ts",
|
|
|
|
"./native.js": "./src/native.ts"
|
|
|
|
},
|
2023-10-16 19:23:53 +03:00
|
|
|
"distOnlyFields": {
|
|
|
|
"exports": {
|
|
|
|
".": {
|
|
|
|
"import": "./esm/index.js",
|
|
|
|
"require": "./cjs/index.js"
|
2023-11-02 19:11:26 +03:00
|
|
|
},
|
2024-02-28 00:33:23 +03:00
|
|
|
"./native.js": {
|
2023-11-02 19:11:26 +03:00
|
|
|
"import": "./esm/native.cjs",
|
|
|
|
"require": "./cjs/native.cjs"
|
2023-10-16 19:23:53 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2021-07-25 21:03:40 +03:00
|
|
|
"dependencies": {
|
2024-02-28 00:33:23 +03:00
|
|
|
"@mtcute/node": "workspace:^"
|
2023-11-13 20:14:32 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@mtcute/test": "workspace:^"
|
2021-05-01 21:22:20 +03:00
|
|
|
}
|
|
|
|
}
|