{
  "name": "templeo",
  "version": "3.0.1",
  "description": "Micro template engine with cache and debugging support",
  "main": "index.js",
  "exports": {
    ".": "./index.js",
    "./lib/*": "./lib/*",
    "./package.json": "./package.json"
  },
  "directories": {
    "test": "test"
  },
  "scripts": {
    "test": "node test/run.js prod",
    "testing": "node test/run.js test",
    "test-debug": "node test/run.js dev",
    "docs:api": "node ./docs/generate-api.mjs",
    "docs:dev": "npm run docs:api && vitepress dev docs",
    "docs:build": "npm run docs:api && vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "audit:runtime": "npm audit --omit=dev",
    "audit:development": "npm audit",
    "test:browser": "node --test --test-concurrency=1 --test-reporter=spec test/browser.js",
    "test:browser:install": "playwright install --with-deps --only-shell chromium",
    "release": "PACKAGE_VERSION=$(node -p \"require('./package.json').version\") && git add -A && git commit -m \"Release v${PACKAGE_VERSION}\" && git push origin master && git tag -a \"v${PACKAGE_VERSION}\" -m \"Release v${PACKAGE_VERSION}\" && git push origin \"v${PACKAGE_VERSION}\""
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ugate/templeo.git"
  },
  "keywords": [
    "template engine",
    "template literal",
    "partial"
  ],
  "author": "ugate",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ugate/templeo/issues"
  },
  "homepage": "https://ugate.github.io/templeo/",
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {},
  "devDependencies": {
    "express": "5.2.1",
    "jsdoc": "4.0.5",
    "jsdom": "30.0.1",
    "level": "10.0.0",
    "playwright": "1.62.1",
    "vitepress": "1.6.4"
  },
  "files": [
    "/CHANGELOG.md",
    "/index.js",
    "/lib/**/*"
  ],
  "type": "module",
  "allowScripts": {
    "classic-level": true,
    "esbuild": true
  },
  "overrides": {
    "underscore": "1.13.8"
  }
}
