{
  "name": "@jpbm135/bigodin",
  "version": "0.5.1",
  "description": "Secure Handlebars/Mustache templating for user-provided templates with async helpers support and human-friendly parsing errors",
  "main": "dist/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/esm/index.js",
      "require": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "sideEffects": false,
  "workspaces": [
    "website"
  ],
  "resolutions": {
    "webpack": "5.97.1"
  },
  "files": [
    "dist",
    "LIB.md",
    "LANGUAGE.md",
    "HELPERS.md",
    "README.md"
  ],
  "scripts": {
    "prebuild": "rimraf dist",
    "build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json && node scripts/postbuild-esm.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:cov": "vitest run --coverage",
    "test:spec": "yarn test:setup:mustache-spec && vitest run test/spec.spec.ts",
    "test:setup:mustache-spec": "cd test && git clone https://github.com/mustache/spec.git mustache || true",
    "typecheck:test": "tsc -p tsconfig.test.json",
    "prepublish": "yarn build",
    "lint": "TIMING=1 DEBUG=\"eslint:eslint,eslint:cli*,eslint:linter\" eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy content && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
    "lint:fix": "TIMING=1 DEBUG=\"eslint:eslint,eslint:cli*,eslint:linter\" eslint --cache --cache-location node_modules/.cache/eslint/ --cache-strategy content --fix && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "docs:dev": "yarn build && yarn workspace bigodin-website start",
    "docs:build": "yarn build && yarn workspace bigodin-website build",
    "docs:serve": "yarn workspace bigodin-website serve"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/JPBM135/bigodin.git"
  },
  "keywords": [
    "mustache",
    "parser",
    "compiler",
    "interpreter",
    "handlebars"
  ],
  "author": "JPBM135 <contact@jpbm.dev>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/JPBM135/bigodin/issues"
  },
  "homepage": "https://jpbm135.github.io/bigodin",
  "devDependencies": {
    "@types/node": "^24.2.1",
    "@typescript-eslint/eslint-plugin": "^8.39.1",
    "@typescript-eslint/parser": "^8.39.1",
    "@vitest/coverage-v8": "^4.1.0",
    "eslint": "9.39.2",
    "eslint-config-neon": "^0.3.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-prettier": "5.5.5",
    "handlebars": "^4.7.9",
    "prettier": "3.8.1",
    "rimraf": "^6.0.1",
    "typescript": "^5.9.2",
    "vitest": "^4.1.0"
  },
  "dependencies": {
    "pierrejs": "^0.5.0"
  },
  "engines": {
    "node": ">=20"
  },
  "packageManager": "yarn@4.14.1",
  "publishConfig": {
    "access": "public"
  }
}
