UNPKG

tiny-crypto-suite

Version:

Tiny tools, big crypto — seamless encryption and certificate handling for modern web and Node apps.

110 lines (109 loc) 3.44 kB
{ "name": "tiny-crypto-suite", "version": "1.5.5", "description": "Tiny tools, big crypto — seamless encryption and certificate handling for modern web and Node apps.", "scripts": { "test": "npm run test:mjs && npm run test:cjs && npm run test:js", "test:js": "npx babel-node test/index.js", "test:cjs": "node test/index.cjs", "test:mjs": "node test/index.mjs", "test:mjs:tiny": "node test/index.mjs tinyCrypto", "test:mjs:cert": "node test/index.mjs certCrypto", "test:mjs:chain": "node test/index.mjs tinyChain", "test:mjs:olm": "node test/index.mjs olm", "fix:prettier": "npm run fix:prettier:src && npm run fix:prettier:test && npm run fix:prettier:rollup.config && npm run fix:prettier:webpack.config", "fix:prettier:src": "prettier --write ./src/*", "fix:prettier:test": "prettier --write ./test/*", "fix:prettier:rollup.config": "prettier --write ./rollup.config.mjs", "fix:prettier:webpack.config": "prettier --write ./webpack.config.mjs", "auto-build": "npm run build", "build": "tsc -p tsconfig.json && rollup -c && webpack --mode production", "build-clean": "npm run clean && npm run build", "build-dist": "npm run build", "clean": "rm -rf dist", "prepublishOnly": "npm run build" }, "main": "./dist/index.cjs", "module": "./dist/index.mjs", "types": "./dist/index.d.mts", "ethereum": "jasmindreasond.x", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.mjs" } }, "repository": { "type": "git", "url": "git+https://github.com/JasminDreasond/Tiny-Crypto-Suite.git" }, "keywords": [ "encryption", "decryption", "secp256k1", "bech32", "bs58check", "keccak256", "aes", "rsa", "x.509", "certificates", "crypto", "security", "key management", "public key", "private key", "certificate generation", "data protection", "cross-platform", "nodejs", "browser", "secure storage", "serialization", "olm" ], "author": "Yasmin Seidel (Jasmin Dreasond)", "license": "GPL-3.0-only", "bugs": { "url": "https://github.com/JasminDreasond/Tiny-Crypto-Suite/issues" }, "homepage": "https://github.com/JasminDreasond/Tiny-Crypto-Suite#readme", "devDependencies": { "@babel/cli": "^7.27.0", "@babel/core": "^7.26.10", "@babel/node": "^7.26.0", "@babel/preset-env": "^7.26.9", "@matrix-org/olm": "^3.2.15", "@rollup/plugin-commonjs": "^28.0.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.1", "@rollup/plugin-typescript": "^12.1.2", "@types/bech32": "^1.1.2", "@types/bs58check": "^2.1.2", "@types/clone": "^2.1.4", "@types/elliptic": "^6.4.18", "@types/node-forge": "^1.3.11", "babel-preset-es2015": "^6.24.1", "bech32": "^2.0.0", "bs58check": "^4.0.0", "elliptic": "^6.6.1", "fake-indexeddb": "^6.0.0", "js-sha3": "^0.9.3", "lodash": "^4.17.21", "node-forge": "^1.3.1", "node-polyfill-webpack-plugin": "^4.1.0", "prettier": "3.5.3", "rollup": "^4.40.0", "rollup-preserve-directives": "^1.1.3", "safe-stable-stringify": "^2.5.0", "tslib": "^2.8.1", "type-fest": "^4.40.0", "typescript": "^5.8.3", "webpack": "^5.99.6", "webpack-cli": "^6.0.1" }, "dependencies": { "clone": "^2.1.2", "tiny-essentials": "^1.13.1" } }