{
  "name": "@ctrl/golang-template",
  "version": "2.0.1",
  "description": "Basic golang template parsing in js",
  "keywords": [
    "golang",
    "re_replace",
    "template",
    "templating",
    "typescript"
  ],
  "license": "MIT",
  "author": "Scott Cooper <scttcper@gmail.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/scttcper/golang-template.git"
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "exports": {
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "lint": "oxlint . && oxfmt --check",
    "lint:fix": "oxlint . --fix && oxfmt",
    "prepare": "npm run build",
    "typecheck": "tsc --noEmit",
    "build": "tsdown src/index.ts --format esm --format cjs",
    "test": "vitest run",
    "test:watch": "vitest",
    "bench": "vitest bench"
  },
  "devDependencies": {
    "@ctrl/oxlint-config": "1.5.0",
    "@sindresorhus/tsconfig": "8.1.0",
    "@types/node": "25.8.0",
    "oxfmt": "0.50.0",
    "oxlint": "1.65.0",
    "tsdown": "0.22.0",
    "typescript": "6.0.3",
    "vitest": "4.1.6"
  },
  "release": {
    "branches": [
      "master"
    ]
  },
  "engines": {
    "node": ">=18"
  },
  "packageManager": "pnpm@11.1.2"
}
