{
  "name": "@tonkite/tlb-parser",
  "version": "0.2.0",
  "description": "Parse TL-B syntax into TypeScript objects",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "tlb-parser": "./dist/cli.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tonkite/tlb-parser.git"
  },
  "keywords": [
    "TL-B",
    "TLB",
    "tlb",
    "TON",
    "Telegram",
    "AST",
    "peg",
    "grammar"
  ],
  "author": "Nikita Sobolev <mail@sobolevn.me>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/tonkite/tlb-parser/issues"
  },
  "homepage": "https://github.com/tonkite/tlb-parser#readme",
  "dependencies": {
    "ohm-js": "^17.1.0"
  },
  "devDependencies": {
    "@types/dedent": "^0.7.2",
    "@types/jest": "^29.5.14",
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.10.5",
    "dedent": "^1.5.3",
    "jest": "^29.7.0",
    "js-yaml": "^4.1.0",
    "prettier": "^3.4.2",
    "ts-jest": "^29.2.5",
    "typescript": "^5.3.3"
  },
  "scripts": {
    "build": "tsc --project tsconfig.build.json",
    "test": "jest",
    "format:check": "prettier . --check",
    "format": "prettier . --write"
  }
}