{
  "name": "csp-helper",
  "version": "0.14.0",
  "description": "Helpers for managing Content Security Policy (CSP)",
  "keywords": [
    "content-security-policy",
    "csp",
    "datadog",
    "google-ads",
    "google-analytics",
    "google-identity",
    "google-tag-manager",
    "hotjar",
    "manager",
    "merger",
    "reddit",
    "tiktok",
    "twitter",
    "util",
    "x",
    "youtube"
  ],
  "homepage": "https://github.com/meteorlxy/csp-helper#readme",
  "bugs": {
    "url": "git+https://github.com/meteorlxy/csp-helper/issues"
  },
  "license": "MIT",
  "author": "meteorlxy",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/meteorlxy/csp-helper.git"
  },
  "files": [
    "./dist"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "publishConfig": {
    "access": "public"
  },
  "devDependencies": {
    "@commitlint/cli": "^21.1.0",
    "@commitlint/config-conventional": "^21.1.0",
    "@meteorlxy/eslint-config": "^7.7.0",
    "@meteorlxy/oxfmt-config": "^7.7.0",
    "@meteorlxy/tsconfig": "^7.0.0",
    "@vitest/coverage-istanbul": "^4.1.9",
    "bumpp": "^11.1.0",
    "conventional-changelog": "^7.2.1",
    "eslint": "^10.5.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.8",
    "oxfmt": "^0.56.0",
    "rimraf": "^6.1.3",
    "tsdown": "^0.22.3",
    "typescript": "^6.0.3",
    "vitest": "^4.1.9"
  },
  "lint-staged": {
    "*.(js|ts)": [
      "eslint --fix",
      "oxfmt --no-error-on-unmatched-pattern"
    ],
    "*.!(js|ts)": "oxfmt --no-error-on-unmatched-pattern"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "scripts": {
    "build": "tsdown",
    "check-types": "tsc --noEmit --skipLibCheck",
    "clean": "rimraf dist",
    "format": "oxfmt",
    "lint": "eslint . && oxfmt --check",
    "lint:fix": "eslint --fix . && oxfmt",
    "release": "pnpm release:check && pnpm release:version",
    "release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
    "release:check": "pnpm clean && pnpm build && pnpm lint && pnpm check-types && pnpm test",
    "release:version": "bumpp --execute=\"pnpm release:changelog\" --commit \"build: publish v%s\" --all",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage"
  }
}