{
  "type": "module",
  "name": "@specy/dotlr",
  "description": "An LR(1) parser generator and visualizer created for educational purposes.",
  "keywords": [
    "educational",
    "lalr-parsing",
    "lr-parsing",
    "parser-generator"
  ],
  "license": "MIT OR Apache-2.0",
  "version": "0.4.1",
  "main": "dist/index.js",
  "exports": {
    ".": "./dist/index.js",
    "./types": "./dist/types.js",
    "./utils": "./dist/utils.js"
  },
  "module": "dist/index.js",
  "typings": "dist/index.d.ts",
  "repository": "https://github.com/umut-sahin/dotlr",
  "scripts": {
    "build": "npm i -g wasm-pack && npm run build-all",
    "build-all": "npm run build-wasm:no-test && npm run build-lib",
    "build-wasm": "cd .. && cargo test && wasm-pack build --out-dir bindings/typescript/src/pkg --out-name dotlr --features wasm --no-default-features",
    "build-wasm:no-test": "cd .. && wasm-pack build --out-dir bindings/typescript/src/pkg --out-name dotlr --features wasm --no-default-features",
    "build-lib": "node build.js",
    "lint": "npx eslint .",
    "format": "npx prettier . --write",
    "format:check": "npx prettier . --check"
  },
  "devDependencies": {
    "@eslint/js": "^9.12.0",
    "@types/node": "^22.7.5",
    "eslint": "^9.12.0",
    "prettier": "3.3.3",
    "tsx": "^4.19.1",
    "typescript": "^5.6.0",
    "typescript-eslint": "^8.8.1"
  },
  "dependencies": {
    "ts-results-es": "^4.2.0"
  }
}
