{
  "name": "vite-plugin-svg-icons-ng",
  "version": "1.9.2",
  "description": "Vite plugin for easily creating an SVG sprite and injecting it for use, with a brand-new version.",
  "type": "module",
  "license": "MIT",
  "author": "yangxu52",
  "files": [
    "dist",
    "client.d.ts"
  ],
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./client": {
      "types": "./client.d.ts"
    }
  },
  "engines": {
    "node": "^18.0.0 || ^20.0.0 || >=22.0.0"
  },
  "keywords": [
    "vite",
    "vite-plugin",
    "svg",
    "icon",
    "svg-icon",
    "svg-icons",
    "sprite",
    "spritemap",
    "spritesheet",
    "svg-sprite",
    "svg-sprites",
    "symbol",
    "svg-symbol",
    "svgo"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/yangxu52/vite-plugin-svg-icons-ng.git",
    "directory": "packages/vite-plugin-svg-icons-ng"
  },
  "bugs": {
    "url": "https://github.com/yangxu52/vite-plugin-svg-icons-ng/issues"
  },
  "homepage": "https://blog.yangxu52.top/vite-plugin-svg-icons-ng",
  "dependencies": {
    "tinyglobby": "^0.2.17",
    "svg-icon-baker": "2.1.0"
  },
  "peerDependencies": {
    "vite": ">=5.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.13.3",
    "@vitest/coverage-v8": "^4.1.10",
    "playwright": "^1.61.1",
    "typescript": "~5.9.3",
    "unbuild": "^3.6.1",
    "vite": "^6.4.3",
    "vitest": "^4.1.10"
  },
  "scripts": {
    "dev": "unbuild --stub",
    "build": "unbuild",
    "test": "vitest run",
    "test:unit": "vitest run --project unit",
    "test:browser": "vitest run --project browser",
    "coverage": "vitest run --coverage",
    "typecheck": "tsc -b",
    "clean": "rimraf dist node_modules/.tmp",
    "release": "commit-and-tag-version --path . -t v"
  }
}