{
  "name": "@phantom/chain-interfaces",
  "version": "2.0.2",
  "description": "Shared chain interfaces for Phantom SDK",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "?pack-release": "When https://github.com/changesets/changesets/issues/432 has a solution we can remove this trick",
    "pack-release": "rimraf ./_release && yarn pack && mkdir ./_release && tar zxvf ./package.tgz --directory ./_release && rm ./package.tgz",
    "build": "rimraf ./dist && tsc --project . --outDir dist --declaration --emitDeclarationOnly",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "lint": "tsc --noEmit && eslint --cache .",
    "check-types": "tsc --noEmit",
    "prettier": "prettier --write \"src/**/*.{ts,tsx}\""
  },
  "keywords": [
    "phantom",
    "wallet",
    "solana",
    "ethereum",
    "crypto",
    "web3",
    "chains"
  ],
  "author": "Phantom",
  "repository": {
    "type": "git",
    "url": "https://github.com/phantom/phantom-connect-sdk",
    "directory": "packages/chain-interfaces"
  },
  "dependencies": {
    "@phantom/constants": "^2.0.2",
    "@phantom/parsers": "^2.0.2",
    "@phantom/sdk-types": "^2.0.2"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.11.0",
    "eslint": "10.2.1",
    "jest": "^29.7.0",
    "prettier": "^3.5.2",
    "rimraf": "^6.0.1",
    "ts-jest": "^29.1.2",
    "tsup": "^6.7.0",
    "typescript": "^5.0.4"
  },
  "publishConfig": {
    "directory": "_release/package"
  }
}