{
  "name": "@manifesto-ai/intent-ir",
  "version": "0.3.1",
  "description": "Manifesto Intent IR - Chomskyan LF-based Intermediate Representation for natural language intent",
  "author": "eggplantiny <eggplantiny@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/manifesto-ai/core.git",
    "directory": "packages/intent-ir"
  },
  "bugs": {
    "url": "https://github.com/manifesto-ai/core/issues"
  },
  "homepage": "https://github.com/manifesto-ai/core/tree/main/packages/intent-ir#readme",
  "keywords": [
    "manifesto",
    "intent-ir",
    "nlp",
    "chomsky",
    "logical-form",
    "semantic",
    "zod"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@manifesto-ai/core": "2.2.0"
  },
  "peerDependencies": {
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "typescript": "^5.9.3",
    "zod": "^4.3.6"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "clean": "rm -rf dist",
    "lint": "echo 'lint not configured'",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage"
  }
}