Files
notesnook/packages/crypto/package.json
2022-08-27 17:27:46 +05:00

27 lines
685 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": "1.0.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration --outDir ./dist"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"libsodium-wrappers": "0.7.9"
},
"devDependencies": {
"@types/libsodium-wrappers": "0.7.9",
"typescript": "^4.8.2"
},
"repository": {
"type": "git",
"url": "https://github.com/streetwriters/notesnook.git",
"directory": "packages/crypto"
}
}