-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.09 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "rozenite-preview",
"version": "0.0.0-development",
"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"
}
}