{
  "name": "binpat",
  "version": "0.1.3",
  "type": "module",
  "description": "Parse binary data using declarative patterns.",
  "keywords": [
    "binary",
    "pattern",
    "schema",
    "parser",
    "DataView"
  ],
  "main": "dist/binpat.js",
  "module": "dist/binpat.js",
  "types": "dist/binpat.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "transpile": "tsc -d -t esnext -m esnext --lib esnext,dom binpat.ts --outDir dist",
    "minify": "terser dist/binpat.js --compress --mangle --module -o dist/binpat.js",
    "build": "npm run transpile && npm run minify",
    "version": "npm run build",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/weizhenye/binpat.git"
  },
  "author": "Zhenye Wei",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/weizhenye/binpat/issues"
  },
  "homepage": "https://github.com/weizhenye/binpat#readme",
  "devDependencies": {
    "terser": "^5.39.0",
    "typescript": "^5.8.2"
  }
}
