{
  "name": "@dpml/core",
  "version": "0.0.0-20250504131739",
  "description": "DPML Core: Implementations of base compiler, and provide a simple framework for domain developers.",
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "dpml-core": "./dist/bin.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "dpml",
    "AI",
    "agent",
    "compiler",
    "framework",
    "prompt",
    "llm",
    "mcp",
    "domain",
    "language",
    "workflow"
  ],
  "author": "Deepractice",
  "license": "MIT",
  "dependencies": {
    "commander": "^13.1.0",
    "lodash": "^4.17.21",
    "marked": "^15.0.7",
    "strnum": "^2.0.5",
    "xml2js": "^0.6.2"
  },
  "scripts": {
    "prebuild": "pnpm lint ",
    "build": "tsup",
    "postbuild": "chmod +x dist/bin.js",
    "lint": "eslint src --ext .ts --fix",
    "swc": "node -r @swc-node/register",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "clean": "rm -rf dist node_modules cover"
  }
}