{
  "name": "@antseed/node",
  "version": "0.2.97",
  "description": "Antseed Network protocol SDK — P2P inference marketplace",
  "type": "module",
  "files": [
    "dist",
    "scripts"
  ],
  "engines": {
    "node": ">=20.0.0"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./p2p": {
      "import": "./dist/p2p/index.js",
      "types": "./dist/p2p/index.d.ts"
    },
    "./discovery": {
      "import": "./dist/discovery/index.js",
      "types": "./dist/discovery/index.d.ts"
    },
    "./metering": {
      "import": "./dist/metering/index.js",
      "types": "./dist/metering/index.d.ts"
    },
    "./payments": {
      "import": "./dist/payments/index.js",
      "types": "./dist/payments/index.d.ts"
    },
    "./verification": {
      "import": "./dist/verification/index.js",
      "types": "./dist/verification/index.d.ts"
    },
    "./types": {
      "import": "./dist/types/index.js",
      "types": "./dist/types/index.d.ts"
    }
  },
  "dependencies": {
    "@silentbot1/nat-api": "^0.4.9",
    "better-sqlite3": "^12.6.2",
    "bittorrent-dht": "^11.0.11",
    "ethers": "~6.16.0",
    "node-datachannel": "^0.7.0",
    "tokenx": "^1.3.0",
    "@antseed/api-adapter": "0.1.39"
  },
  "optionalDependencies": {
    "keytar": "^7.9.0"
  },
  "devDependencies": {
    "@openzeppelin/contracts": "^5.6.1",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^20.11.0",
    "typescript": "^5.3.0",
    "vitest": "^1.2.0"
  },
  "scripts": {
    "postinstall": "node scripts/patch-ethers.js",
    "ensure:native": "node scripts/ensure-node-native-modules.mjs",
    "build": "tsc",
    "pretest": "npm run ensure:native",
    "test": "node ./node_modules/vitest/vitest.mjs run",
    "typecheck": "tsc --noEmit"
  }
}