mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-29 00:20:04 +01:00
33 lines
810 B
JSON
33 lines
810 B
JSON
{
|
|
"name": "@notesnook/sodium",
|
|
"version": "1.1.0",
|
|
"description": "",
|
|
"main": "./dist/node.js",
|
|
"types": "./dist/node.d.ts",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"bench": "ts-node benches/bench.ts",
|
|
"build": "tsc",
|
|
"postbuild": "node scripts/postbuild.mjs",
|
|
"prepublishOnly": "npm run build && npm run test"
|
|
},
|
|
"author": "",
|
|
"license": "GPL-3.0-or-later",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/streetwriters/notesnook.git",
|
|
"directory": "packages/sodium"
|
|
},
|
|
"dependencies": {
|
|
"libsodium-wrappers-sumo": "^0.7.11",
|
|
"sodium-native": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/libsodium-wrappers-sumo": "0.7.5",
|
|
"benny": "^3.7.1",
|
|
"ts-node": "^10.9.1",
|
|
"vitest": "^0.32.2"
|
|
},
|
|
"browser": "./dist/browser.js"
|
|
}
|