{
  "name": "dotprompt",
  "version": "1.1.2",
  "description": "Dotprompt: Executable GenAI Prompt Templates",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/google/dotprompt.git",
    "directory": "js"
  },
  "keywords": [
    "genai",
    "prompting",
    "llms",
    "templating",
    "handlebars"
  ],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/node": "22.15.20",
    "@typescript/native-preview": "7.0.0-dev.20250614.1",
    "@vitest/coverage-v8": "^3.1.4",
    "prettier": "^3.5.3",
    "tsup": "^8.5.0",
    "tsx": "^4.19.4",
    "typedoc": "^0.28.4",
    "typedoc-plugin-markdown": "^4.6.3",
    "typescript": "^5.8.3",
    "vitest": "^3.1.4"
  },
  "dependencies": {
    "handlebars": "^4.7.8",
    "yaml": "^2.8.0"
  },
  "scripts": {
    "compile": "tsup-node src/index.ts --dts --format esm,cjs",
    "build": "pnpm run compile && tsc -p ./tsconfig.build.json --noEmit",
    "build:native": "pnpm run compile && tsgo -p ./tsconfig.build.json --noEmit",
    "watch": "pnpm run compile -- --watch",
    "test": "vitest run --coverage",
    "test:watch": "vitest"
  }
}