{
  "name": "@aldea/core",
  "description": "Core Aldea data structures and cryptographic functions.",
  "version": "0.7.2",
  "license": "Apache-2.0",
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/aldea.core.bundle.cjs",
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./abi": {
      "import": "./dist/abi/index.js",
      "types": "./dist/abi/index.d.ts",
      "default": "./dist/abi/index.js"
    },
    "./instructions": {
      "import": "./dist/instructions/index.js",
      "types": "./dist/instructions/index.d.ts",
      "default": "./dist/instructions/index.js"
    },
    "./*": {
      "import": "./dist/*.js",
      "types": "./dist/*.d.ts",
      "default": "./dist/*.js"
    }
  },
  "main": "./dist/aldea.core.bundle.cjs",
  "module": "./dist/index.js",
  "browser": "./dist/aldea.core.bundle.browser.mjs",
  "unpkg": "./dist/aldea.core.bundle.min.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist/**/*",
    "src/**/*"
  ],
  "scripts": {
    "build": "run-s clean build:ts build:es",
    "build:ts": "tsc",
    "build:es": "node esbuild.js",
    "ci": "yarn test:local",
    "clean": "rimraf dist/* || true",
    "docs": "typedoc",
    "test": "run-s build test:local",
    "test:browser": "playwright test",
    "test:local": "ava",
    "vectors": "node scripts/vectorgen.js"
  },
  "packageManager": "yarn@3.2.3",
  "dependencies": {
    "@noble/ed25519": "^2.0.0",
    "@noble/hashes": "^1.3.0",
    "@scure/base": "^1.1.1"
  },
  "devDependencies": {
    "@mxssfd/typedoc-theme": "^1.1.1",
    "@playwright/test": "^1.33.0",
    "@scure/bip39": "^1.2.0",
    "ava": "^5.2.0",
    "esbuild": "^0.17.19",
    "npm-run-all": "^4.1.5",
    "rimraf": "^5.0.0",
    "typedoc": "^0.24.7",
    "typescript": "^5.0.4"
  },
  "ava": {
    "concurrency": 4,
    "files": [
      "test/**/*.test.js",
      "!test/browser"
    ]
  }
}