{
  "name": "toncenter-v3-api",
  "version": "2.0.4",
  "description": "Complete TypeScript/JavaScript library for TON Center v3 API with ALL methods support",
  "keywords": [
    "ton",
    "blockchain",
    "toncenter",
    "api",
    "typescript",
    "cryptocurrency",
    "web3",
    "ton-blockchain"
  ],
  "author": "Ilya Aksakov <lexent.lex@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ilya-Aksakov/toncenter-v3-api.git"
  },
  "homepage": "https://github.com/Ilya-Aksakov/toncenter-v3-api#readme",
  "bugs": {
    "url": "https://github.com/Ilya-Aksakov/toncenter-v3-api/issues"
  },
  "main": "dist/index.js",
  "module": "index.ts",
  "types": "index.ts",
  "type": "module",
  "files": [
    "dist/",
    "src/",
    "index.ts",
    "README.md",
    "LICENSE"
  ],
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "lint": "eslint . --ext .ts,.js",
    "lint:fix": "eslint . --ext .ts,.js --fix",
    "format": "prettier --write \"**/*.{ts,js,json,md}\"",
    "format:check": "prettier --check \"**/*.{ts,js,json,md}\"",
    "check": "bun run lint && bun run format:check",
    "fix": "bun run lint:fix && bun run format",
    "typecheck": "tsc --noEmit",
    "prebuild": "bun run check && bun run typecheck",
    "build": "bun run prebuild && bun build index.ts --outfile=dist/index.js --target=node",
    "build:fast": "bun build index.ts --outfile=dist/index.js --target=node",
    "prepublishOnly": "bun run build",
    "example": "bun run example.ts"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@typescript-eslint/eslint-plugin": "^8.42.0",
    "@typescript-eslint/parser": "^8.42.0",
    "eslint": "^9.34.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-prettier": "^5.5.4",
    "prettier": "^3.6.2"
  },
  "peerDependencies": {
    "typescript": "^5.0.0"
  }
}
