{
  "name": "tooled-prompt",
  "version": "0.19.0",
  "type": "module",
  "description": "Runtime LLM prompt library with smart tool recognition",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc -p tsconfig.typecheck.json",
    "lint": "eslint src/",
    "lint:fix": "eslint --fix src/",
    "format": "prettier --write \"src/**/*.ts\" \"*.{json,js,md}\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"*.{json,js,md}\"",
    "prepare": "husky"
  },
  "keywords": [
    "llm",
    "ai",
    "prompt",
    "typescript",
    "template-literals",
    "openai",
    "anthropic",
    "tools",
    "function-calling"
  ],
  "author": "Maxim Valenko",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/beshanoe/tooled-prompt.git"
  },
  "bugs": {
    "url": "https://github.com/beshanoe/tooled-prompt/issues"
  },
  "homepage": "https://github.com/beshanoe/tooled-prompt#readme",
  "sideEffects": false,
  "dependencies": {
    "acorn": "^8.16.0",
    "dedent": "^1.7.1",
    "file-type": "^21.3.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/node": "^22.0.0",
    "@vitest/coverage-v8": "^3.2.4",
    "dotenv": "^16.4.0",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "husky": "^9.1.7",
    "lint-staged": "^16.2.7",
    "prettier": "^3.8.1",
    "typescript": "^5.6.0",
    "typescript-eslint": "^8.55.0",
    "vitest": "^3.0.0",
    "zod": "^4.3.6"
  },
  "peerDependencies": {
    "zod": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "zod": {
      "optional": true
    }
  },
  "lint-staged": {
    "*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ],
    "*.{json,md,yml,yaml}": [
      "prettier --write"
    ]
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ]
}
