{
  "name": "expo-crypto-universal",
  "version": "0.2.12",
  "description": "Universal crypto implementation for Expo that works across all platforms including web",
  "private": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "npm run typecheck && vite build",
    "test": "vitest --run",
    "typecheck": "tsc --noEmit",
    "coverage": "vitest run --coverage",
    "prepublishOnly": "npm test && npm run build"
  },
  "keywords": [
    "expo",
    "crypto",
    "random",
    "sha2",
    "sha256",
    "sha384",
    "sha512",
    "web",
    "universal"
  ],
  "author": "Yasuo Higa",
  "license": "MIT",
  "homepage": "https://github.com/higayasuo/expo-crypto-universal#readme",
  "bugs": {
    "url": "https://github.com/higayasuo/expo-crypto-universal/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/higayasuo/expo-crypto-universal.git"
  },
  "devDependencies": {
    "@types/node": "^20.11.24",
    "typescript": "^5.2.2",
    "vite": "^5.1.4",
    "vite-plugin-dts": "^3.7.3",
    "vitest": "^1.3.1"
  }
}
