{
  "name": "@codixverse/totp",
  "version": "1.0.0",
  "description": "TOTP library for React Native, websites, Chrome/Firefox extensions, and Node.js. Works 100% in Expo Go without native modules.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "prepublishOnly": "npm run build",
    "test": "echo \"Error: no test specified\" && exit 1",
    "publish:public": "npm publish --access public",
    "publish:beta": "npm publish --tag beta --access public"
  },
  "keywords": [
    "totp",
    "otp",
    "authenticator",
    "google-authenticator",
    "react-native",
    "expo",
    "chrome-extension",
    "firefox-addon",
    "web",
    "nodejs",
    "rfc6238",
    "hmac-sha1",
    "hmac-sha256",
    "hmac-sha512",
    "base32",
    "security",
    "two-factor",
    "2fa",
    "typescript",
    "browser-extension"
  ],
  "author": {
    "name": "Codixverse",
    "email": "contact@codixverse.xyz",
    "url": "https://codixverse.xyz"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/Codixverse/codixverse-totp.git"
  },
  "bugs": {
    "url": "https://github.com/Codixverse/codixverse-totp/issues"
  },
  "homepage": "https://github.com/Codixverse/codixverse-totp#readme",
  "dependencies": {
    "@noble/hashes": "^1.3.3"
  },
  "devDependencies": {
    "@types/node": "^20.10.5",
    "typescript": "^5.3.3"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  }
}
