{
  "name": "@console-one/parser",
  "version": "0.1.2",
  "description": "Runtime-composable pushdown parser: scanner primitives (KMP Match, Any/Not char classes, ordered-choice Race), declarative grammar DSL, in-stream aggregation, and meta-language embedding.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/console-one/parser.git"
  },
  "bugs": {
    "url": "https://github.com/console-one/parser/issues"
  },
  "homepage": "https://github.com/console-one/parser#readme",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean": "rm -rf dist",
    "smoke": "node dist/smoke.js",
    "test": "node dist/test-runner.js",
    "prepublishOnly": "npm run clean && npm run build && npm run test"
  },
  "keywords": [
    "parser",
    "scanner",
    "grammar",
    "pushdown-automaton",
    "kmp",
    "composable-grammar",
    "meta-language",
    "embedded-dsl",
    "runtime-grammar"
  ],
  "author": "Andrew Chalmers",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.19.39",
    "@types/uuid": "^10.0.0",
    "typescript": "^5.9.3"
  },
  "dependencies": {
    "@console-one/assessable": "file:../assessable",
    "@console-one/multimap": "^0.2.0",
    "heap-js": "^2.7.1",
    "uuid": "^13.0.0"
  }
}
