rozenite-preview
Version:
A Rozenite plugin that lets you select React Native components in DevTools and preview them live on your simulator. Ideal for rapid UI development, component testing, and debugging complex apps.
77 lines (76 loc) • 2.14 kB
JSON
{
"name": "rozenite-preview",
"version": "1.0.0-beta.3",
"description": "A Rozenite plugin that lets you select React Native components in DevTools and preview them live on your simulator. Ideal for rapid UI development, component testing, and debugging complex apps.",
"type": "module",
"main": "./dist/react-native.cjs",
"module": "./dist/react-native.js",
"types": "./dist/react-native.d.ts",
"exports": {
".": {
"types": "./dist/react-native.d.ts",
"import": "./dist/react-native.js",
"require": "./dist/react-native.cjs"
},
"./babel-plugin": {
"require": "./dist/preview-babel-plugin.cjs",
"import": "./dist/preview-babel-plugin.js"
}
},
"scripts": {
"prepublishOnly": "bun run build && bun run build:babel-plugin",
"semantic-release": "semantic-release",
"build": "rozenite build",
"build:babel-plugin": "vite build --config vite.babel-plugin.config.ts",
"dev": "rozenite dev"
},
"repository": {
"url": "https://github.com/matinzd/rozenite-preview"
},
"keywords": [
"rozenite-plugin",
"react-native-devtools",
"rozenite",
"react-native",
"devtools",
"react-native-preview",
"component-preview",
"ui-preview",
"plugin",
"react-native-plugin",
"live-preview",
"hot-reload",
"developer-tools",
"debugging"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"provenance": true
},
"dependencies": {
"@rozenite/plugin-bridge": "1.0.0-alpha.6"
},
"devDependencies": {
"@babel/core": "^7.28.0",
"@rozenite/vite-plugin": "1.0.0-alpha.6",
"@types/react": "~18.3.12",
"lucide-react": "^0.534.0",
"react": "18.3.1",
"react-dom": "18.3.0",
"react-native": "0.76.0",
"react-native-web": "0.21.0",
"rozenite": "1.0.0-alpha.3",
"semantic-release": "^24.2.7",
"typescript": "^5.7.3",
"vite": "^6.0.0"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"license": "MIT",
"release": {
"repositoryUrl": "https://github.com/matinzd/rozenite-preview"
}
}