{
  "name": "@anilkumarthakur/vue3-json-viewer",
  "version": "0.6.0",
  "type": "module",
  "description": "A beautiful, customizable JSON viewer component for Vue 3 with TypeScript support, dark/light mode, expand/collapse controls, and syntax highlighting.",
  "author": "Anil Kumar Thakur",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/anilkumarthakur60/vue3-json-viewer"
  },
  "homepage": "https://anilkumarthakur60.github.io/vue3-json-viewer",
  "bugs": {
    "url": "https://github.com/anilkumarthakur60/vue3-json-viewer/issues"
  },
  "main": "dist/index.umd.js",
  "module": "dist/index.es.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.es.js",
      "require": "./dist/index.umd.js"
    },
    "./styles.css": "./dist/vue3-json-viewer.css"
  },
  "sideEffects": [
    "*.css",
    "*.scss"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "vue",
    "vue3",
    "vue 3",
    "vue-component",
    "typescript",
    "json",
    "json-viewer",
    "json-tree",
    "json-tree-view",
    "json-renderer",
    "json-formatter",
    "json-pretty",
    "tree-view",
    "object-viewer",
    "data-viewer",
    "debugging",
    "developer-tools",
    "expand-collapse",
    "collapsible",
    "expandable",
    "nested-json",
    "nested-objects",
    "dark-mode",
    "light-mode",
    "theming",
    "syntax-highlighting",
    "copy-to-clipboard"
  ],
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@rushstack/eslint-patch": "^1.16.1",
    "@tsconfig/node20": "^20.1.9",
    "@types/jsdom": "^28.0.1",
    "@types/node": "^26.1.1",
    "@vitejs/plugin-vue": "^6.0.5",
    "@vitejs/plugin-vue-jsx": "^5.1.5",
    "@vue/eslint-config-prettier": "^10.2.0",
    "@vue/eslint-config-typescript": "^14.7.0",
    "@vue/language-core": "^3.3.7",
    "@vue/test-utils": "^2.4.6",
    "@vue/tsconfig": "^0.9.1",
    "eslint": "^10.1.0",
    "eslint-plugin-vue": "^10.8.0",
    "globals": "^17.4.0",
    "jsdom": "^29.0.1",
    "moment": "^2.30.1",
    "npm-run-all2": "^9.0.2",
    "prettier": "3.9.5",
    "sass": "^1.98.0",
    "sass-loader": "^17.0.0",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.64.0",
    "vite": "^8.0.3",
    "vite-plugin-dts": "^5.0.3",
    "vite-plugin-vue-devtools": "^8.1.1",
    "vitepress": "^1.6.4",
    "vitest": "^4.1.2",
    "vue-tsc": "^3.2.6"
  },
  "peerDependencies": {
    "vue": "^3.3.0"
  },
  "scripts": {
    "dev": "vite",
    "build": "vue-tsc --noEmit && vite build",
    "preview": "vite preview",
    "format": "prettier --write .",
    "check": "prettier --check \"**/*.{js,ts,vue,scss,html,md,json}\" --ignore-path .gitignore",
    "test": "vitest",
    "test:unit": "vitest",
    "build-only": "vite build",
    "type-check": "vue-tsc --noEmit",
    "lint": "eslint -c ./eslint.config.js \"./src*/**/*.{ts,js,cjs,mjs,vue}\" --fix",
    "docs:dev": "vitepress dev docs",
    "docs:build": "vitepress build docs",
    "docs:preview": "vitepress preview docs"
  }
}