{
  "name": "@mysten/bcs",
  "version": "1.6.0",
  "description": "BCS - Canonical Binary Serialization implementation for JavaScript",
  "license": "Apache-2.0",
  "author": "Mysten Labs <build@mystenlabs.com>",
  "sideEffects": false,
  "type": "commonjs",
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "types": "./dist/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/esm/index.js",
      "require": "./dist/cjs/index.js"
    }
  },
  "files": [
    "CHANGELOG.md",
    "dist",
    "src"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MystenLabs/ts-sdks.git"
  },
  "keywords": [
    "bcs",
    "libra",
    "diem",
    "move",
    "serialization",
    "serde"
  ],
  "bugs": {
    "url": "https://github.com/MystenLabs/ts-sdks/issues"
  },
  "size-limit": [
    {
      "path": "dist/index.js",
      "limit": "10 kB"
    },
    {
      "path": "dist/index.mjs",
      "limit": "10 kB"
    }
  ],
  "homepage": "https://github.com/MystenLabs/ts-sdks#readme",
  "devDependencies": {
    "@size-limit/preset-small-lib": "^11.2.0",
    "size-limit": "^11.2.0",
    "typescript": "^5.8.2",
    "vitest": "^3.1.1",
    "@mysten/build-scripts": "0.0.0"
  },
  "dependencies": {
    "@scure/base": "^1.2.4"
  },
  "scripts": {
    "clean": "rm -rf tsconfig.tsbuildinfo ./dist",
    "dev": "pnpm build --watch",
    "build": "build-package",
    "test": "vitest run",
    "test:watch": "vitest",
    "prettier:check": "prettier -c --ignore-unknown .",
    "prettier:fix": "prettier -w --ignore-unknown .",
    "eslint:check": "eslint --max-warnings=0 .",
    "eslint:fix": "pnpm run eslint:check --fix",
    "lint": "pnpm run eslint:check && pnpm run prettier:check",
    "lint:fix": "pnpm run eslint:fix && pnpm run prettier:fix"
  }
}