{
  "name": "@andrew_l/tl-pack",
  "version": "0.3.6",
  "description": "Another implementation of binary serialization.",
  "license": "MIT",
  "type": "module",
  "keywords": [
    "tl",
    "pack",
    "binary",
    "buffer",
    "serialization",
    "deserialization"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/men232/toolkit.git",
    "directory": "packages/tl-pack"
  },
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./stream": {
      "import": "./dist/stream.mjs",
      "require": "./dist/stream.cjs",
      "types": "./dist/stream.d.ts"
    }
  },
  "main": "./dist/index.cjs",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "pako": "^2.1.0",
    "@andrew_l/toolkit": "0.3.6"
  },
  "devDependencies": {
    "@types/node": "22.10.5",
    "@types/pako": "^2.0.3",
    "typescript": "~5.8.3",
    "unbuild": "3.5.0",
    "vitest": "^3.2.4"
  },
  "scripts": {
    "check-types": "tsc --noEmit",
    "build": "unbuild",
    "test": "vitest run --typecheck",
    "test:watch": "vitest watch --typecheck"
  }
}