{
  "name": "@rialo/frost-core",
  "version": "0.18.1",
  "description": "Framework-agnostic wallet integration library for Rialo DApps",
  "keywords": [
    "rialo",
    "dapp",
    "wallet",
    "web3",
    "blockchain",
    "wallet-standard"
  ],
  "license": "Apache-2.0",
  "author": "Subzero Labs <build@subzero.xyz>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/SubzeroLabs/rialo.git",
    "directory": "cdk/frost/core"
  },
  "homepage": "https://github.com/SubzeroLabs/rialo/tree/main/developer-frameworks/cdk/frost",
  "bugs": {
    "url": "https://github.com/SubzeroLabs/rialo/issues"
  },
  "sideEffects": false,
  "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"
    },
    "./testing": {
      "types": "./dist/testing.d.ts",
      "import": "./dist/testing.js",
      "require": "./dist/testing.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "@rialo/ts-cdk": "^0.18.1",
    "@rialo/wallet-standard": "0.1.1",
    "@tanstack/store": "0.8.0",
    "@wallet-standard/app": "1.1.0",
    "@wallet-standard/base": "1.1.0",
    "@wallet-standard/features": "1.1.0"
  },
  "devDependencies": {
    "tsup": "8.3.5",
    "typescript": "5.9.3",
    "vitest": "3.2.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "check-types": "tsc --noEmit",
    "lint": "biome check src/",
    "lint:fix": "biome check --write src/",
    "test": "vitest run --pass-with-no-tests",
    "test:watch": "vitest"
  }
}