{
  "name": "@turnkey/sdk-server",
  "version": "8.5.0",
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "default": "./dist/index.mjs"
    }
  },
  "types": "./dist/index.d.ts",
  "license": "Apache-2.0",
  "description": "JavaScript Server SDK",
  "keywords": [
    "Turnkey"
  ],
  "author": {
    "name": "Turnkey",
    "url": "https://turnkey.com"
  },
  "homepage": "https://github.com/tkhq/sdk",
  "bugs": {
    "url": "https://github.com/tkhq/sdk/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tkhq/sdk.git",
    "directory": "packages/sdk-server"
  },
  "files": [
    "dist/",
    "CHANGELOG.md",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "buffer": "^6.0.3",
    "cross-fetch": "^3.1.5",
    "@turnkey/api-key-stamper": "0.6.15",
    "@turnkey/http": "6.5.0",
    "@turnkey/crypto": "2.13.0",
    "@turnkey/wallet-stamper": "1.1.27",
    "@turnkey/sdk-types": "1.8.0"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "glob": "^8.0.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').name + '@' + require('./package.json').version) + ';'\" > src/__generated__/version.ts",
    "build": "rollup -c",
    "clean": "rimraf ./dist ./.cache",
    "typecheck": "tsc --noEmit",
    "codegen": "node scripts/codegen.js"
  }
}