{
  "name": "@mdfriday/text-template",
  "version": "26.4.1",
  "description": "A lightweight, efficient text templating engine implemented in TypeScript for modern JavaScript and TypeScript applications",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "default": "./dist/index.js"
    }
  },
  "private": false,
  "files": [
    "dist",
    "README.md"
  ],
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "build": "node build.js",
    "build:dev": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rimraf dist",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "template",
    "templating",
    "text-template",
    "typescript",
    "go-template",
    "esm",
    "commonjs",
    "dual-package"
  ],
  "author": "MDFriday",
  "license": "UNLICENSED",
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "esbuild": "^0.20.0",
    "jest": "^29.7.0",
    "rimraf": "^5.0.5",
    "terser": "^5.43.1",
    "ts-jest": "^29.1.2",
    "typescript": "^5.3.3"
  }
}
