{
  "name": "vite-plugin-inline-source",
  "version": "5.0.0",
  "description": "A vite plugin for inlining files into HTML",
  "files": [
    "dist"
  ],
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "packageManager": "pnpm@11.0.8",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs"
    }
  },
  "type": "module",
  "engines": {
    "node": ">=22"
  },
  "keywords": [
    "vite",
    "plugin",
    "markup",
    "inline",
    "css",
    "svg"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/bienzaaron/vite-plugin-inline-source"
  },
  "bugs": {
    "url": "https://github.com/bienzaaron/vite-plugin-inline-source/issues"
  },
  "homepage": "https://github.com/bienzaaron/vite-plugin-inline-source#readme",
  "author": "Aaron Bienz <bienzaaronj@gmail.com>",
  "license": "MIT",
  "scripts": {
    "pipeline": "pnpm lint && pnpm test && pnpm typecheck && pnpm build && pnpm lint:publish",
    "typecheck": "tsc -p tsconfig.json",
    "build": "tsdown",
    "lint": "oxlint && oxfmt --check",
    "lint:fix": "oxlint --fix --no-error-on-unmatched-pattern && oxfmt --write --no-error-on-unmatched-pattern",
    "lint:publish": "publint",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "prepare": "husky"
  },
  "dependencies": {
    "csso": "^5.0.5",
    "esbuild": "^0.28.0",
    "sass": "^1.99.0",
    "svgo": "^4.0.1",
    "terser": "^5.47.1",
    "tslib": "^2.8.1",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@tsconfig/node22": "^22.0.5",
    "@types/csso": "^5.0.4",
    "@types/node": "^22.19.18",
    "@vitest/coverage-v8": "^4.1.5",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.2",
    "oxfmt": "^0.48.0",
    "oxlint": "^1.63.0",
    "publint": "^0.3.19",
    "rolldown": "^1.0.0",
    "tsdown": "^0.22.0",
    "typescript": "^6.0.3",
    "vite": "^8.0.11",
    "vitest": "^4.1.5"
  },
  "peerDependencies": {
    "vite": "8.x"
  },
  "lint-staged": {
    "*.{js,ts,jsx,tsx,json,html}": [
      "oxlint --fix --no-error-on-unmatched-pattern",
      "oxfmt --write --no-error-on-unmatched-pattern"
    ]
  }
}
