{
  "name": "@neuraiproject/neurai-key",
  "version": "4.0.0",
  "description": "Generate Neurai addresses from mnemonic code. BIP32, BIP39, BIP44",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./browser": {
      "types": "./dist/index.d.ts",
      "import": "./dist/browser.js"
    },
    "./global": "./dist/NeuraiKey.global.js"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rm -rf dist",
    "build": "npm run clean && rollup -c",
    "test": "npm run build && vitest run ./test.test.mjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/neuraiproject/neurai-key.git"
  },
  "keywords": [
    "Neurai",
    "BIP44",
    "BIP39"
  ],
  "author": "Neuraiproject",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/neuraiproject/neurai-key/issues"
  },
  "homepage": "https://github.com/neuraiproject/neurai-key#readme",
  "dependencies": {
    "@noble/curves": "^2.0.0",
    "@noble/hashes": "^2.0.0",
    "@noble/post-quantum": "^0.6.0",
    "@scure/bip39": "^2.0.1",
    "bech32": "^2.0.0"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^29.0.2",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/node": "^20.19.27",
    "rollup": "^4.60.1",
    "rollup-plugin-dts": "^6.4.1",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.3"
  }
}
