{
  "name": "@b127/crypto",
  "version": "0.4.3",
  "description": "File encryption in Nodejs",
  "private": false,
  "keywords": [
    "encryption",
    "decryption",
    "crypto"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Barry127/crypto.git"
  },
  "bugs": {
    "url": "https://github.com/Barry127/crypto/issues"
  },
  "author": "Barry de Kleijn <kleijn.barry@gmail.com>",
  "type": "module",
  "exports": {
    "default": "./dist/index.js",
    "types": "./dist/index.d.ts"
  },
  "engines": {
    "node": ">=18"
  },
  "devDependencies": {
    "@types/node": "^22.5.2",
    "rimraf": "^6.0.1",
    "typescript": "^5.5.4",
    "vitest": "^2.0.5"
  },
  "scripts": {
    "clear": "rimraf dist",
    "build": "npm run clear && tsc",
    "test": "tsc --noEmit && vitest run",
    "test:watch": "vitest"
  }
}