{
  "name": "@rozenite/vite-plugin",
  "version": "1.13.0",
  "description": "Vite plugin for developing React Native DevTools plugins with hot reload and development tools",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "src",
    "templates"
  ],
  "keywords": [
    "react-native",
    "devtools",
    "vite",
    "plugin"
  ],
  "homepage": "https://github.com/callstackincubator/rozenite#readme",
  "bugs": {
    "url": "https://github.com/callstackincubator/rozenite/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/callstackincubator/rozenite.git"
  },
  "author": "Szymon Chmal <szymon.chmal@callstack.com>",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "development": "./src/index.ts",
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "dependencies": {
    "@microsoft/api-extractor": "^7.50.1",
    "@vitejs/plugin-react": "^4.3.4",
    "ejs": "^3.1.9",
    "vite-plugin-dts": "~4.5.0",
    "vite-plugin-react-native-web": "^2.1.1"
  },
  "peerDependencies": {
    "react": "*",
    "react-dom": "*",
    "vite": "^7.3.1"
  },
  "devDependencies": {
    "@types/ejs": "^3.1.5",
    "@types/react": "~19.2.2",
    "@types/react-dom": "~19.1.7",
    "baseui": "^16.1.1",
    "react-json-tree": "^0.20.0",
    "react": "19.2.0",
    "react-dom": "19.2.0",
    "styletron-engine-monolithic": "^1.0.0",
    "styletron-react": "^6.1.1"
  },
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "vite build && vite build --config src/dev-host/vite.config.mts",
    "test": "vitest run",
    "typecheck": "tsc -p tsconfig.lib.json --noEmit",
    "lint": "eslint ."
  }
}