forked from monogramdesign/idx-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathidx-template.json
36 lines (36 loc) · 924 Bytes
/
idx-template.json
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
{
"name": "React Native + Expo",
"description": "A simple React Native + Expo starter",
"categories": ["Mobile"],
"icon": "https://www.gstatic.com/monospace/231115/logo_react-native.svg",
"publisher": "Google LLC",
"host": {
"virtualization": true
},
"params": [
{
"id": "packageManager",
"name": "What package manager do you want to use?",
"type": "enum",
"default": "npm",
"options": {
"npm": "npm",
"pnpm": "pnpm",
"bun": "bun",
"yarn": "yarn"
},
"required": true
},
{
"id": "openIn",
"name": "How would you like to open the app?",
"type": "enum",
"default": "go",
"options": {
"go": "Expo Go (allows you to run the app on your phone)",
"development": "Development Build (allows you to write your own native code, and more)"
},
"required": true
}
]
}