{
  "name": "@irfanshadikrishad/cipher",
  "description": "A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.",
  "version": "1.7.0",
  "author": {
    "name": "Irfan Shadik Rishad"
  },
  "license": "MPL-2.0",
  "scripts": {
    "all": "npm run build && npm run format && npm run lint && npm run test",
    "build": "rm -rf ./dist && tsc",
    "build:watch": "rm -rf ./dist && tsc -w",
    "format": "prettier . --write",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "prepare": "husky",
    "test": "jest ./tests"
  },
  "keywords": [
    "security",
    "cipher",
    "cryptography",
    "encryption",
    "decryption"
  ],
  "homepage": "https://github.com/irfanshadikrishad/cipher#readme",
  "bugs": {
    "url": "https://github.com/irfanshadikrishad/cipher/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/irfanshadikrishad/cipher.git"
  },
  "type": "module",
  "main": "./dist/index.js",
  "bin": {
    "cipher": "./dist/index.js"
  },
  "directories": {
    "lib": "src",
    "test": "test"
  },
  "files": [
    "dist"
  ],
  "prettier": "@irfanshadikrishad/prettier",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@irfanshadikrishad/prettier": "^1.3.4",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.6.0",
    "@typescript-eslint/eslint-plugin": "^8.57.0",
    "@typescript-eslint/parser": "^8.57.0",
    "eslint": "^10.2.0",
    "globals": "^17.5.0",
    "husky": "^9.1.7",
    "jest": "^30.3.0",
    "prettier": "^3.8.3",
    "ts-jest": "^29.4.9",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.57.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
