{
  "name": "paraphrase",
  "version": "3.1.3",
  "description": "🧩 Create flavoured string template interpolation",
  "keywords": [
    "string",
    "replace",
    "phrase",
    "template",
    "placement",
    "interpolation",
    "custom",
    "🧩"
  ],
  "author": "omrilotan",
  "license": "Unlicense",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/omrilotan/paraphrase.git"
  },
  "homepage": "https://omrilotan.com/paraphrase/",
  "type": "commonjs",
  "main": "./index.js",
  "module": "./index.mjs",
  "browser": "./index.mjs",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "browser": {
        "import": "./index.mjs",
        "require": "./index.js"
      },
      "node": {
        "import": "./index.mjs",
        "require": "./index.js"
      },
      "import": "./index.mjs",
      "require": "./index.js",
      "default": "./index.js"
    }
  },
  "types": "./index.d.ts",
  "files": [
    "index.js",
    "index.js.map",
    "index.mjs",
    "index.mjs.map",
    "index.d.ts"
  ],
  "scripts": {
    "test": "node --test **/test.ts",
    "format": "prettier --write .",
    "build": "tsup src/index.ts --format cjs,esm --dts --out-dir . --sourcemap",
    "prepublishOnly": "npm run build"
  },
  "devDependencies": {
    "@types/node": "^25.0.10",
    "prettier": "^3.0.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3"
  }
}
