{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "@xlabs-xyz/binary-layout",
  "version": "8.1.3",
  "author": "xLabs",
  "license": "Apache-2.0",
  "description": "Typescript-native, declarative DSL for working with binary data",
  "keywords": [
    "typescript",
    "binary",
    "serialization",
    "deserialization",
    "parser",
    "encoder",
    "decoder",
    "Uint8Array"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/xlabs/ts-sdk"
  },
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "sideEffects": false,
  "types": "./dist/index.d.ts",
  "exports": {
    "types": "./dist/index.d.ts",
    "import": "./dist/index.js",
    "default": "./dist/index.js"
  },
  "files": [
    "dist",
    "!*.test.*",
    "README.md"
  ],
  "peerDependencies": {
    "@xlabs-xyz/const-utils": "^8.1.3"
  },
  "devDependencies": {
    "@xlabs-xyz/const-utils": "8.1.3"
  },
  "scripts": {
    "build": "tsc",
    "test": "tsx --test tests/**/*.test.ts",
    "clean": "rm -rf ./dist"
  }
}