{
  "name": "@safe-global/safe-apps-sdk",
  "version": "9.1.0",
  "description": "SDK developed to integrate third-party apps with Safe app.",
  "type": "module",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist/**/*",
    "src/**/*",
    "CHANGELOG.md",
    "README.md"
  ],
  "sideEffects": false,
  "keywords": [
    "Safe",
    "sdk",
    "apps"
  ],
  "scripts": {
    "test": "jest",
    "prebuild": "node -p \"'export const getSDKVersion = () => \\'' + require('./package.json').version.split('-')[0] + '\\';'\" > src/version.ts",
    "build": "yarn rimraf ./dist && yarn build:cjs && yarn build:esm && yarn build:types",
    "build:cjs": "tsc --project tsconfig.json --module commonjs --outDir ./dist/cjs && echo '{\"type\": \"commonjs\"}' > ./dist/cjs/package.json",
    "build:esm": "tsc --project tsconfig.json --module es2020 --outDir ./dist/esm && echo '{\"type\": \"module\"}' > ./dist/esm/package.json",
    "build:types": "tsc --project tsconfig.json --module esnext --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap"
  },
  "exports": {
    ".": {
      "types": "./dist/types/index.d.ts",
      "import": "./dist/esm/index.js",
      "default": "./dist/cjs/index.js"
    }
  },
  "author": "Safe (https://safe.global)",
  "license": "MIT",
  "dependencies": {
    "@safe-global/safe-gateway-typescript-sdk": "^3.5.3",
    "viem": "^2.1.1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/safe-global/safe-apps-sdk.git"
  },
  "bugs": {
    "url": "https://github.com/safe-global/safe-apps-sdk/issues"
  },
  "homepage": "https://github.com/safe-global/safe-apps-sdk#readme",
  "publishConfig": {
    "access": "public"
  }
}
