mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-15 19:27:51 +01:00
35 lines
916 B
JSON
35 lines
916 B
JSON
{
|
|
"name": "@notesnook/crypto",
|
|
"private": false,
|
|
"description": "An easy to use wrapper around libsodium exposing essential cryptographic methods. Currently only Web is supported.",
|
|
"version": "2.1.3",
|
|
"license": "GPL-3.0-or-later",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"require": {
|
|
"types": "./dist/index.d.ts",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"import": {
|
|
"types": "./dist/index.d.mts",
|
|
"default": "./dist/index.mjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsdown src/index.ts",
|
|
"prepublishOnly": "npm run build",
|
|
"watch": "npm run build -- --watch"
|
|
},
|
|
"dependencies": {
|
|
"@notesnook/sodium": "file:../sodium"
|
|
},
|
|
"devDependencies": {},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/streetwriters/notesnook.git",
|
|
"directory": "packages/crypto"
|
|
}
|
|
}
|