{
  "name": "string-object-formatter",
  "version": "4.0.1",
  "description": "Python inspired named template formatter for Javascript strings",
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "author": "Alberto Rico",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alrico88/string-object-formatter"
  },
  "devDependencies": {
    "@biomejs/biome": "^1.9.4",
    "@rslib/core": "^0.6.7",
    "@vitest/coverage-c8": "^0.24.5",
    "coveralls": "^3.1.1",
    "typedoc": "^0.23.28",
    "typedoc-plugin-markdown": "^3.17.1",
    "typescript": "^5.8.3",
    "vitest": "^0.24.5"
  },
  "keywords": [
    "strings",
    "format",
    "object",
    "python"
  ],
  "scripts": {
    "build": "rslib build",
    "check": "biome check --write",
    "dev": "rslib build --watch",
    "format": "biome format --write",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "docs": "typedoc src/index.ts --readme none --gitRevision master --plugin typedoc-plugin-markdown",
    "prepublish": "pnpm run build"
  }
}