{
  "name": "dom-outline",
  "version": "2.1.8",
  "description": "a vanilla javascript plugin that allows you to outline dom elements like web inspectors",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.js"
    }
  },
  "scripts": {
    "dev": "vite",
    "build": "npm run build:js && npm run build:types",
    "build:js": "vite build",
    "build:types": "tsc --project tsconfig.build.json && node scripts/build-types.js",
    "preview": "vite preview",
    "type-check": "tsc --noEmit",
    "examples": "vite --config vite.examples.config.ts",
    "examples:build": "vite build --config vite.examples.config.ts",
    "examples:preview": "vite preview --config vite.examples.config.ts"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ZoeLeee/DomOutline.git"
  },
  "keywords": [
    "inspection",
    "inspector",
    "outline-dom-element",
    "dom",
    "outline"
  ],
  "author": "Joe Lee",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ZoeLeee/DomOutline/issues"
  },
  "homepage": "https://github.com/ZoeLeee/DomOutline#readme",
  "devDependencies": {
    "vite": "^7.0.0",
    "typescript": "^5.0.0",
    "@types/node": "^20.0.0",
    "terser": "^5.0.0"
  },
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ]
}
