UNPKG

@tigthor/kokocrypt

Version:

Enhanced Fortress Edition - Secure, quantum-resistant, high-performance encryption package

93 lines (92 loc) 2.38 kB
{ "name": "@tigthor/kokocrypt", "version": "1.0.1", "description": "Enhanced Fortress Edition - Secure, quantum-resistant, high-performance encryption package", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*" ], "exports": { ".": { "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./browser": { "require": "./dist/browser/index.js", "types": "./dist/browser/index.d.ts" }, "./kafka": { "require": "./dist/kafka/index.js", "types": "./dist/kafka/index.d.ts" } }, "scripts": { "build": "tsc -p tsconfig.json", "test": "jest --runInBand", "bench": "ts-node src/cli/bench.ts", "prepublishOnly": "npm run build && npm test", "pub": "npm publish --access public", "clean": "rm -rf ./lib/", "lint": "eslint ./src/ --fix", "prepare": "husky install", "typecheck": "tsc --noEmit", "coverage": "jest --coverage" }, "repository": { "type": "git", "url": "https://github.com/tigthor/kokocrypt.git" }, "license": "MIT", "author": { "name": "Tigthor" }, "engines": { "node": ">=18.0" }, "keywords": [ "encryption", "security", "crypto", "nestjs", "xchacha20", "poly1305", "noise-protocol", "ed25519" ], "dependencies": { "@nestjs/event-emitter": "^3.0.1", "@nestjs/platform-express": "^11.1.0", "kafkajs": "^2.2.4", "libsodium-wrappers": "^0.7.13", "rxjs": "^7.8.1", "sodium-native": "^5.0.1" }, "devDependencies": { "@nestjs/common": "^11.1.0", "@nestjs/config": "^4.0.2", "@nestjs/core": "^11.1.0", "@nestjs/microservices": "^11.1.0", "@nestjs/testing": "^11.1.0", "@types/body-parser": "^1.19.5", "@types/express": "^4.17.21", "@types/jest": "^29.5.11", "@types/libsodium-wrappers": "^0.7.13", "@types/node": "^20.10.5", "@typescript-eslint/eslint-plugin": "^6.15.0", "@typescript-eslint/parser": "^6.15.0", "axios": "^1.9.0", "body-parser": "^2.2.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-prettier": "^5.1.2", "express": "^5.1.0", "husky": "^8.0.3", "jest": "^29.7.0", "lint-staged": "13.3.0", "prettier": "^3.1.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.2", "typescript": "^5.3.3" } }