{
  "name": "@xmcl/nbt",
  "version": "3.0.3",
  "main": "./index.ts",
  "browser": "./dist/index.browser.mjs",
  "description": "NBT serialization and deserialization",
  "engines": {
    "node": ">=16.4"
  },
  "scripts": {
    "build:type": "tsc",
    "build:cjs": "esbuild --target=node16 --platform=node --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
    "build:esm": "esbuild --target=node16 --platform=node --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts",
    "build:browser": "esbuild --target=es2020 --external:@xmcl/* --external:pako --sourcemap --format=esm --bundle --outfile=dist/index.browser.mjs index.ts"
  },
  "publishConfig": {
    "access": "public",
    "main": "./dist/index.js",
    "module": "./dist/index.mjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Voxelum/x-minecraft-launcher.git"
  },
  "author": "cijhn@hotmail.com",
  "keywords": [
    "minecraft",
    "typescript",
    "minecraft-launcher",
    "nodejs",
    "electron",
    "nbt"
  ],
  "license": "MIT",
  "dependencies": {
    "@xmcl/bytebuffer": "workspace:^*",
    "pako": "^2.1.0"
  },
  "bugs": {
    "url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
  },
  "homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme",
  "devDependencies": {
    "@types/node": "^24.13.3",
    "@types/pako": "^2.0.0",
    "@xmcl/oxlint-config": "workspace:^*",
    "esbuild": "^0.25.12",
    "oxlint": "^1.63.0",
    "typescript": "^5.9.3",
    "vitest": "^4.1.0"
  }
}
