{
  "name": "encryption-for-node",
  "version": "1.1.9",
  "description": "Portable Crypto libraries for Node and Browsers",
  "module": "lib/esm/index.js",
  "main": "lib/cjs/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "clean": "rmdir /S /Q lib",
    "build": "npm run clean && npm run build:esm && npm run build:cjs",
    "build:esm": "tsc --moduleResolution NodeNext --module NodeNext --outDir lib/esm",
    "build:cjs": "tsc --moduleResolution node --module commonjs --outDir lib/cjs",
    "prepack": ""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hearhellacopters/node-crypto.git"
  },
  "exports": {
    ".": {
      "import": "./lib/esm/index.js",
      "require": "./lib/cjs/index.js"
    },
    "./*": "./*"
  },
  "keywords": [
    "encrypt",
    "decrypt",
    "encryption",
    "decryption",
    "crypto",
    "AES",
    "BLOWFISH",
    "CAMELLIA",
    "CAST128",
    "IDEA",
    "MARS",
    "MISTY1",
    "SEED",
    "SERPENT",
    "TWOFISH",
    "CHACHA20",
    "ARIA",
    "Triple DES",
    "SM4"
  ],
  "author": "hearhellacopters",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/hearhellacopters/node-crypto/issues"
  },
  "homepage": "https://github.com/hearhellacopters/node-crypto#readme",
  "devDependencies": {
    "@types/mocha": "^10.0.2",
    "@types/node": "7.0.7",
    "@typescript/lib-dom": "npm:@types/web@^0.0.115",
    "typescript": "^5.2.2"
  },
  "engines": {
    "node": ">=12"
  }
}
