{
  "name": "@xmcl/mod-parser",
  "version": "3.4.2",
  "main": "./dist/index.js",
  "description": "The utilities to parse Forge/Liteloader/Fabric/Quilt mod metadata.",
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "smol-toml": "^1.3.1",
    "@xmcl/asm": "1.0.1",
    "@xmcl/system": "2.2.9"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Voxelum/minecraft-launcher-core-node.git"
  },
  "author": "cijhn@hotmail.com",
  "sideEffects": false,
  "keywords": [
    "minecraft",
    "typescript",
    "minecraft-launcher",
    "nodejs",
    "electron",
    "forge",
    "minecraftforge",
    "fabric",
    "liteloader",
    "quilt"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Voxelum/minecraft-launcher-core-node/issues"
  },
  "homepage": "https://github.com/Voxelum/minecraft-launcher-core-node#readme",
  "devDependencies": {
    "@types/node": "~18.15.11",
    "esbuild": "^0.17.16",
    "oxlint": "^0.15.5",
    "typescript": "^5.3.3",
    "@xmcl/oxlint-config": "0.0.1"
  },
  "scripts": {
    "build:type": "tsc",
    "build:cjs": "esbuild --target=node16 --platform=node --sourcemap --external:toml --external:@xmcl/* --format=cjs --bundle --outfile=dist/index.js index.ts",
    "build:esm": "esbuild --target=node16 --platform=node --sourcemap --external:toml --external:@xmcl/* --format=esm --bundle --outfile=dist/index.mjs index.ts"
  },
  "module": "./dist/index.mjs"
}