{
  "name": "@dpml/core",
  "version": "0.3.0",
  "description": "DPML Core: Parsing, validation, and transformation for DPML documents",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "bun run build.ts",
    "test": "echo 'No unit tests - see BDD tests in /bdd'",
    "lint": "eslint .",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "keywords": [
    "dpml",
    "parser",
    "validation",
    "transformer",
    "xml",
    "markup",
    "prompt"
  ],
  "author": "Deepractice",
  "license": "MIT",
  "engines": {
    "node": ">=22.0.0"
  },
  "dependencies": {
    "lodash": "^4.17.21",
    "strnum": "^2.0.5",
    "xml2js": "^0.6.2"
  },
  "publishConfig": {
    "access": "public"
  }
}
