{
  "name": "@xmcl/system",
  "version": "2.2.9",
  "main": "./dist/index.js",
  "browser": "./dist/index.browser.mjs",
  "description": "An abstract layer for file system on reading zip or plain dictionary/file",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "yauzl": "^2.10.0",
    "jszip": "^3.10.1",
    "@xmcl/unzip": "2.1.2"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
  },
  "author": "cijhn@hotmail.com",
  "keywords": [
    "minecraft",
    "typescript",
    "minecraft-launcher",
    "nodejs",
    "file-system",
    "electron"
  ],
  "devDependencies": {
    "@types/node": "~18.15.11",
    "@types/yauzl": "^2.10.0",
    "esbuild": "^0.17.16",
    "oxlint": "^0.15.5",
    "typescript": "^5.3.3",
    "@xmcl/oxlint-config": "0.0.1"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
  },
  "homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme",
  "scripts": {
    "build:type": "tsc",
    "build:cjs": "esbuild --target=node16 --external:yauzl --external:@xmcl/* --platform=node --sourcemap --format=cjs --bundle --outfile=dist/index.js index.ts",
    "build:esm": "esbuild --target=node16 --external:yauzl --external:@xmcl/* --platform=node --sourcemap --format=esm --bundle --outfile=dist/index.mjs index.ts",
    "build:browser": "esbuild --target=es2020 --sourcemap --external:jszip --external:@xmcl/* --format=esm --bundle --outfile=dist/index.browser.mjs index.browser.ts"
  },
  "module": "./dist/index.mjs"
}