{
  "name": "@genkit-ai/dotprompt",
  "description": "Genkit AI framework `.prompt` file format and management library.",
  "keywords": [
    "genkit",
    "ai",
    "genai",
    "generative-ai",
    "prompting",
    "templating"
  ],
  "version": "0.9.12",
  "type": "commonjs",
  "repository": {
    "type": "git",
    "url": "https://github.com/firebase/genkit.git",
    "directory": "js/plugins/dotprompt"
  },
  "author": "genkit",
  "license": "Apache-2.0",
  "dependencies": {
    "front-matter": "^4.0.2",
    "handlebars": "^4.7.8",
    "node-fetch": "^3.3.2",
    "@genkit-ai/ai": "0.9.12",
    "@genkit-ai/core": "0.9.12"
  },
  "devDependencies": {
    "@types/node": "^20.11.16",
    "npm-run-all": "^4.1.5",
    "rimraf": "^6.0.1",
    "tsup": "^8.3.5",
    "tsx": "^4.19.2",
    "typescript": "^4.9.0",
    "yaml": "^2.4.1"
  },
  "types": "./lib/index.d.ts",
  "exports": {
    ".": {
      "require": "./lib/index.js",
      "import": "./lib/index.mjs",
      "types": "./lib/index.d.ts",
      "default": "./lib/index.js"
    }
  },
  "scripts": {
    "check": "tsc",
    "compile": "tsup-node",
    "build:clean": "rimraf ./lib",
    "build": "npm-run-all build:clean check compile",
    "build:watch": "tsup-node --watch",
    "test": "tsx --test tests/*_test.ts"
  }
}