tauri-cli 2.0.0-alpha.6

Command line interface for building Tauri apps
Documentation
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Config",
  "description": "The Tauri configuration object. It is read from a file where you can define your frontend assets, configure the bundler, enable the app updater, define a system tray, enable APIs via the allowlist and more.\n\nThe configuration file is generated by the [`tauri init`](https://tauri.app/v1/api/cli#init) command that lives in your Tauri application source directory (src-tauri).\n\nOnce generated, you may modify it at will to customize your Tauri application.\n\n## File Formats\n\nBy default, the configuration is defined as a JSON file named `tauri.conf.json`.\n\nTauri also supports JSON5 and TOML files via the `config-json5` and `config-toml` Cargo features, respectively. The JSON5 file name must be either `tauri.conf.json` or `tauri.conf.json5`. The TOML file name is `Tauri.toml`.\n\n## Platform-Specific Configuration\n\nIn addition to the default configuration file, Tauri can read a platform-specific configuration from `tauri.linux.conf.json`, `tauri.windows.conf.json`, `tauri.macos.conf.json`, `tauri.android.conf.json` and `tauri.ios.conf.json` (or `Tauri.linux.toml`, `Tauri.windows.toml`, `Tauri.macos.toml`, `Tauri.android.toml` and `Tauri.ios.toml` if the `Tauri.toml` format is used), which gets merged with the main configuration object.\n\n## Configuration Structure\n\nThe configuration is composed of the following objects:\n\n- [`package`](#packageconfig): Package settings - [`tauri`](#tauriconfig): The Tauri config - [`build`](#buildconfig): The build configuration - [`plugins`](#pluginconfig): The plugins config\n\n```json title=\"Example tauri.config.json file\" { \"build\": { \"beforeBuildCommand\": \"\", \"beforeDevCommand\": \"\", \"devPath\": \"../dist\", \"distDir\": \"../dist\" }, \"package\": { \"productName\": \"tauri-app\", \"version\": \"0.1.0\" }, \"tauri\": { \"allowlist\": { \"all\": true }, \"bundle\": {}, \"security\": { \"csp\": null }, \"updater\": { \"active\": false }, \"windows\": [ { \"fullscreen\": false, \"height\": 600, \"resizable\": true, \"title\": \"Tauri App\", \"width\": 800 } ] } } ```",
  "type": "object",
  "properties": {
    "$schema": {
      "description": "The JSON schema for the Tauri config.",
      "type": [
        "string",
        "null"
      ]
    },
    "package": {
      "description": "Package settings.",
      "default": {
        "productName": null,
        "version": null
      },
      "allOf": [
        {
          "$ref": "#/definitions/PackageConfig"
        }
      ]
    },
    "tauri": {
      "description": "The Tauri configuration.",
      "default": {
        "allowlist": {
          "all": false,
          "app": {
            "all": false,
            "hide": false,
            "show": false
          },
          "clipboard": {
            "all": false,
            "readText": false,
            "writeText": false
          },
          "dialog": {
            "all": false,
            "ask": false,
            "confirm": false,
            "message": false,
            "open": false,
            "save": false
          },
          "fs": {
            "all": false,
            "copyFile": false,
            "createDir": false,
            "exists": false,
            "readDir": false,
            "readFile": false,
            "removeDir": false,
            "removeFile": false,
            "renameFile": false,
            "scope": [],
            "writeFile": false
          },
          "globalShortcut": {
            "all": false
          },
          "http": {
            "all": false,
            "request": false,
            "scope": []
          },
          "notification": {
            "all": false
          },
          "os": {
            "all": false
          },
          "path": {
            "all": false
          },
          "process": {
            "all": false,
            "exit": false,
            "relaunch": false,
            "relaunchDangerousAllowSymlinkMacos": false
          },
          "protocol": {
            "all": false,
            "asset": false,
            "assetScope": []
          },
          "shell": {
            "all": false,
            "execute": false,
            "open": false,
            "scope": [],
            "sidecar": false
          },
          "window": {
            "all": false,
            "center": false,
            "close": false,
            "create": false,
            "hide": false,
            "maximize": false,
            "minimize": false,
            "print": false,
            "requestUserAttention": false,
            "setAlwaysOnTop": false,
            "setContentProtected": false,
            "setCursorGrab": false,
            "setCursorIcon": false,
            "setCursorPosition": false,
            "setCursorVisible": false,
            "setDecorations": false,
            "setFocus": false,
            "setFullscreen": false,
            "setIcon": false,
            "setIgnoreCursorEvents": false,
            "setMaxSize": false,
            "setMinSize": false,
            "setPosition": false,
            "setResizable": false,
            "setShadow": false,
            "setSize": false,
            "setSkipTaskbar": false,
            "setTitle": false,
            "show": false,
            "startDragging": false,
            "unmaximize": false,
            "unminimize": false
          }
        },
        "bundle": {
          "active": false,
          "appimage": {
            "bundleMediaFramework": false
          },
          "deb": {
            "files": {}
          },
          "iOS": {},
          "icon": [],
          "identifier": "",
          "macOS": {
            "minimumSystemVersion": "10.13"
          },
          "targets": "all",
          "windows": {
            "allowDowngrades": true,
            "certificateThumbprint": null,
            "digestAlgorithm": null,
            "nsis": null,
            "timestampUrl": null,
            "tsp": false,
            "webviewFixedRuntimePath": null,
            "webviewInstallMode": {
              "silent": true,
              "type": "downloadBootstrapper"
            },
            "wix": null
          }
        },
        "macOSPrivateApi": false,
        "pattern": {
          "use": "brownfield"
        },
        "security": {
          "dangerousDisableAssetCspModification": false,
          "freezePrototype": false
        },
        "updater": {
          "active": false,
          "dialog": true,
          "pubkey": "",
          "windows": {
            "installMode": "passive",
            "installerArgs": []
          }
        },
        "windows": []
      },
      "allOf": [
        {
          "$ref": "#/definitions/TauriConfig"
        }
      ]
    },
    "build": {
      "description": "The build configuration.",
      "default": {
        "devPath": "http://localhost:8080/",
        "distDir": "../dist",
        "withGlobalTauri": false
      },
      "allOf": [
        {
          "$ref": "#/definitions/BuildConfig"
        }
      ]
    },
    "plugins": {
      "description": "The plugins config.",
      "default": {},
      "allOf": [
        {
          "$ref": "#/definitions/PluginConfig"
        }
      ]
    }
  },
  "additionalProperties": false,
  "definitions": {
    "PackageConfig": {
      "description": "The package configuration.\n\nSee more: https://tauri.app/v1/api/config#packageconfig",
      "type": "object",
      "properties": {
        "productName": {
          "description": "App name.",
          "type": [
            "string",
            "null"
          ],
          "pattern": "^[^/\\:*?\"<>|]+$"
        },
        "version": {
          "description": "App version. It is a semver version number or a path to a `package.json` file containing the `version` field.",
          "default": null,
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "TauriConfig": {
      "description": "The Tauri configuration object.\n\nSee more: https://tauri.app/v1/api/config#tauriconfig",
      "type": "object",
      "properties": {
        "pattern": {
          "description": "The pattern to use.",
          "default": {
            "use": "brownfield"
          },
          "allOf": [
            {
              "$ref": "#/definitions/PatternKind"
            }
          ]
        },
        "windows": {
          "description": "The windows configuration.",
          "default": [],
          "type": "array",
          "items": {
            "$ref": "#/definitions/WindowConfig"
          }
        },
        "cli": {
          "description": "The CLI configuration.",
          "anyOf": [
            {
              "$ref": "#/definitions/CliConfig"
            },
            {
              "type": "null"
            }
          ]
        },
        "bundle": {
          "description": "The bundler configuration.",
          "default": {
            "active": false,
            "appimage": {
              "bundleMediaFramework": false
            },
            "deb": {
              "files": {}
            },
            "iOS": {},
            "icon": [],
            "identifier": "",
            "macOS": {
              "minimumSystemVersion": "10.13"
            },
            "targets": "all",
            "windows": {
              "allowDowngrades": true,
              "certificateThumbprint": null,
              "digestAlgorithm": null,
              "nsis": null,
              "timestampUrl": null,
              "tsp": false,
              "webviewFixedRuntimePath": null,
              "webviewInstallMode": {
                "silent": true,
                "type": "downloadBootstrapper"
              },
              "wix": null
            }
          },
          "allOf": [
            {
              "$ref": "#/definitions/BundleConfig"
            }
          ]
        },
        "allowlist": {
          "description": "The allowlist configuration.",
          "default": {
            "all": false,
            "app": {
              "all": false,
              "hide": false,
              "show": false
            },
            "clipboard": {
              "all": false,
              "readText": false,
              "writeText": false
            },
            "dialog": {
              "all": false,
              "ask": false,
              "confirm": false,
              "message": false,
              "open": false,
              "save": false
            },
            "fs": {
              "all": false,
              "copyFile": false,
              "createDir": false,
              "exists": false,
              "readDir": false,
              "readFile": false,
              "removeDir": false,
              "removeFile": false,
              "renameFile": false,
              "scope": [],
              "writeFile": false
            },
            "globalShortcut": {
              "all": false
            },
            "http": {
              "all": false,
              "request": false,
              "scope": []
            },
            "notification": {
              "all": false
            },
            "os": {
              "all": false
            },
            "path": {
              "all": false
            },
            "process": {
              "all": false,
              "exit": false,
              "relaunch": false,
              "relaunchDangerousAllowSymlinkMacos": false
            },
            "protocol": {
              "all": false,
              "asset": false,
              "assetScope": []
            },
            "shell": {
              "all": false,
              "execute": false,
              "open": false,
              "scope": [],
              "sidecar": false
            },
            "window": {
              "all": false,
              "center": false,
              "close": false,
              "create": false,
              "hide": false,
              "maximize": false,
              "minimize": false,
              "print": false,
              "requestUserAttention": false,
              "setAlwaysOnTop": false,
              "setContentProtected": false,
              "setCursorGrab": false,
              "setCursorIcon": false,
              "setCursorPosition": false,
              "setCursorVisible": false,
              "setDecorations": false,
              "setFocus": false,
              "setFullscreen": false,
              "setIcon": false,
              "setIgnoreCursorEvents": false,
              "setMaxSize": false,
              "setMinSize": false,
              "setPosition": false,
              "setResizable": false,
              "setShadow": false,
              "setSize": false,
              "setSkipTaskbar": false,
              "setTitle": false,
              "show": false,
              "startDragging": false,
              "unmaximize": false,
              "unminimize": false
            }
          },
          "allOf": [
            {
              "$ref": "#/definitions/AllowlistConfig"
            }
          ]
        },
        "security": {
          "description": "Security configuration.",
          "default": {
            "dangerousDisableAssetCspModification": false,
            "freezePrototype": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/SecurityConfig"
            }
          ]
        },
        "updater": {
          "description": "The updater configuration.",
          "default": {
            "active": false,
            "dialog": true,
            "pubkey": "",
            "windows": {
              "installMode": "passive",
              "installerArgs": []
            }
          },
          "allOf": [
            {
              "$ref": "#/definitions/UpdaterConfig"
            }
          ]
        },
        "systemTray": {
          "description": "Configuration for app system tray.",
          "anyOf": [
            {
              "$ref": "#/definitions/SystemTrayConfig"
            },
            {
              "type": "null"
            }
          ]
        },
        "macOSPrivateApi": {
          "description": "MacOS private API configuration. Enables the transparent background API and sets the `fullScreenEnabled` preference to `true`.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "PatternKind": {
      "description": "The application pattern.",
      "oneOf": [
        {
          "description": "Brownfield pattern.",
          "type": "object",
          "required": [
            "use"
          ],
          "properties": {
            "use": {
              "type": "string",
              "enum": [
                "brownfield"
              ]
            }
          }
        },
        {
          "description": "Isolation pattern. Recommended for security purposes.",
          "type": "object",
          "required": [
            "options",
            "use"
          ],
          "properties": {
            "use": {
              "type": "string",
              "enum": [
                "isolation"
              ]
            },
            "options": {
              "type": "object",
              "required": [
                "dir"
              ],
              "properties": {
                "dir": {
                  "description": "The dir containing the index.html file that contains the secure isolation application.",
                  "type": "string"
                }
              }
            }
          }
        }
      ]
    },
    "WindowConfig": {
      "description": "The window configuration object.\n\nSee more: https://tauri.app/v1/api/config#windowconfig",
      "type": "object",
      "properties": {
        "label": {
          "description": "The window identifier. It must be alphanumeric.",
          "default": "main",
          "type": "string"
        },
        "url": {
          "description": "The window webview URL.",
          "default": "index.html",
          "allOf": [
            {
              "$ref": "#/definitions/WindowUrl"
            }
          ]
        },
        "userAgent": {
          "description": "The user agent for the webview",
          "type": [
            "string",
            "null"
          ]
        },
        "fileDropEnabled": {
          "description": "Whether the file drop is enabled or not on the webview. By default it is enabled.\n\nDisabling it is required to use drag and drop on the frontend on Windows.",
          "default": true,
          "type": "boolean"
        },
        "center": {
          "description": "Whether or not the window starts centered or not.",
          "default": false,
          "type": "boolean"
        },
        "x": {
          "description": "The horizontal position of the window's top left corner",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "y": {
          "description": "The vertical position of the window's top left corner",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "width": {
          "description": "The window width.",
          "default": 800.0,
          "type": "number",
          "format": "double"
        },
        "height": {
          "description": "The window height.",
          "default": 600.0,
          "type": "number",
          "format": "double"
        },
        "minWidth": {
          "description": "The min window width.",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "minHeight": {
          "description": "The min window height.",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "maxWidth": {
          "description": "The max window width.",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "maxHeight": {
          "description": "The max window height.",
          "type": [
            "number",
            "null"
          ],
          "format": "double"
        },
        "resizable": {
          "description": "Whether the window is resizable or not.",
          "default": true,
          "type": "boolean"
        },
        "title": {
          "description": "The window title.",
          "default": "Tauri App",
          "type": "string"
        },
        "fullscreen": {
          "description": "Whether the window starts as fullscreen or not.",
          "default": false,
          "type": "boolean"
        },
        "focus": {
          "description": "Whether the window will be initially focused or not.",
          "default": true,
          "type": "boolean"
        },
        "transparent": {
          "description": "Whether the window is transparent or not.\n\nNote that on `macOS` this requires the `macos-private-api` feature flag, enabled under `tauri > macOSPrivateApi`. WARNING: Using private APIs on `macOS` prevents your application from being accepted to the `App Store`.",
          "default": false,
          "type": "boolean"
        },
        "maximized": {
          "description": "Whether the window is maximized or not.",
          "default": false,
          "type": "boolean"
        },
        "visible": {
          "description": "Whether the window is visible or not.",
          "default": true,
          "type": "boolean"
        },
        "decorations": {
          "description": "Whether the window should have borders and bars.",
          "default": true,
          "type": "boolean"
        },
        "alwaysOnTop": {
          "description": "Whether the window should always be on top of other windows.",
          "default": false,
          "type": "boolean"
        },
        "contentProtected": {
          "description": "Prevents the window contents from being captured by other apps.",
          "default": false,
          "type": "boolean"
        },
        "skipTaskbar": {
          "description": "If `true`, hides the window icon from the taskbar on Windows and Linux.",
          "default": false,
          "type": "boolean"
        },
        "theme": {
          "description": "The initial window theme. Defaults to the system theme. Only implemented on Windows and macOS 10.14+.",
          "anyOf": [
            {
              "$ref": "#/definitions/Theme"
            },
            {
              "type": "null"
            }
          ]
        },
        "titleBarStyle": {
          "description": "The style of the macOS title bar.",
          "default": "Visible",
          "allOf": [
            {
              "$ref": "#/definitions/TitleBarStyle"
            }
          ]
        },
        "hiddenTitle": {
          "description": "If `true`, sets the window title to be hidden on macOS.",
          "default": false,
          "type": "boolean"
        },
        "acceptFirstMouse": {
          "description": "Whether clicking an inactive window also clicks through to the webview on macOS.",
          "default": false,
          "type": "boolean"
        },
        "tabbingIdentifier": {
          "description": "Defines the window [tabbing identifier] for macOS.\n\nWindows with matching tabbing identifiers will be grouped together. If the tabbing identifier is not set, automatic tabbing will be disabled.\n\n[tabbing identifier]: <https://developer.apple.com/documentation/appkit/nswindow/1644704-tabbingidentifier>",
          "type": [
            "string",
            "null"
          ]
        },
        "additionalBrowserArgs": {
          "description": "Defines additional browser arguments on Windows. By default wry passes `--disable-features=msWebOOUI,msPdfOOUI,msSmartScreenProtection` so if you use this method, you also need to disable these components by yourself if you want.",
          "type": [
            "string",
            "null"
          ]
        },
        "shadow": {
          "description": "Whether or not the window has shadow.\n\n## Platform-specific\n\n- **Windows:** - `false` has no effect on decorated window, shadow are always ON. - `true` will make ndecorated window have a 1px white border, and on Windows 11, it will have a rounded corners. - **Linux:** Unsupported.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "WindowUrl": {
      "description": "An URL to open on a Tauri webview window.",
      "anyOf": [
        {
          "description": "An external URL.",
          "type": "string",
          "format": "uri"
        },
        {
          "description": "The path portion of an app URL. For instance, to load `tauri://localhost/users/john`, you can simply provide `users/john` in this configuration.",
          "type": "string"
        }
      ]
    },
    "Theme": {
      "description": "System theme.",
      "oneOf": [
        {
          "description": "Light theme.",
          "type": "string",
          "enum": [
            "Light"
          ]
        },
        {
          "description": "Dark theme.",
          "type": "string",
          "enum": [
            "Dark"
          ]
        }
      ]
    },
    "TitleBarStyle": {
      "description": "How the window title bar should be displayed on macOS.",
      "oneOf": [
        {
          "description": "A normal title bar.",
          "type": "string",
          "enum": [
            "Visible"
          ]
        },
        {
          "description": "Makes the title bar transparent, so the window background color is shown instead.\n\nUseful if you don't need to have actual HTML under the title bar. This lets you avoid the caveats of using `TitleBarStyle::Overlay`. Will be more useful when Tauri lets you set a custom window background color.",
          "type": "string",
          "enum": [
            "Transparent"
          ]
        },
        {
          "description": "Shows the title bar as a transparent overlay over the window's content.\n\nKeep in mind: - The height of the title bar is different on different OS versions, which can lead to window the controls and title not being where you don't expect. - You need to define a custom drag region to make your window draggable, however due to a limitation you can't drag the window when it's not in focus <https://github.com/tauri-apps/tauri/issues/4316>. - The color of the window title depends on the system theme.",
          "type": "string",
          "enum": [
            "Overlay"
          ]
        }
      ]
    },
    "CliConfig": {
      "description": "describes a CLI configuration\n\nSee more: https://tauri.app/v1/api/config#cliconfig",
      "type": "object",
      "properties": {
        "description": {
          "description": "Command description which will be shown on the help information.",
          "type": [
            "string",
            "null"
          ]
        },
        "longDescription": {
          "description": "Command long description which will be shown on the help information.",
          "type": [
            "string",
            "null"
          ]
        },
        "beforeHelp": {
          "description": "Adds additional help information to be displayed in addition to auto-generated help. This information is displayed before the auto-generated help information. This is often used for header information.",
          "type": [
            "string",
            "null"
          ]
        },
        "afterHelp": {
          "description": "Adds additional help information to be displayed in addition to auto-generated help. This information is displayed after the auto-generated help information. This is often used to describe how to use the arguments, or caveats to be noted.",
          "type": [
            "string",
            "null"
          ]
        },
        "args": {
          "description": "List of arguments for the command",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "$ref": "#/definitions/CliArg"
          }
        },
        "subcommands": {
          "description": "List of subcommands of this command",
          "type": [
            "object",
            "null"
          ],
          "additionalProperties": {
            "$ref": "#/definitions/CliConfig"
          }
        }
      },
      "additionalProperties": false
    },
    "CliArg": {
      "description": "A CLI argument definition.",
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "short": {
          "description": "The short version of the argument, without the preceding -.\n\nNOTE: Any leading `-` characters will be stripped, and only the first non-character will be used as the short version.",
          "type": [
            "string",
            "null"
          ],
          "maxLength": 1,
          "minLength": 1
        },
        "name": {
          "description": "The unique argument name",
          "type": "string"
        },
        "description": {
          "description": "The argument description which will be shown on the help information. Typically, this is a short (one line) description of the arg.",
          "type": [
            "string",
            "null"
          ]
        },
        "longDescription": {
          "description": "The argument long description which will be shown on the help information. Typically this a more detailed (multi-line) message that describes the argument.",
          "type": [
            "string",
            "null"
          ]
        },
        "takesValue": {
          "description": "Specifies that the argument takes a value at run time.\n\nNOTE: values for arguments may be specified in any of the following methods - Using a space such as -o value or --option value - Using an equals and no space such as -o=value or --option=value - Use a short and no space such as -ovalue",
          "default": false,
          "type": "boolean"
        },
        "multiple": {
          "description": "Specifies that the argument may have an unknown number of multiple values. Without any other settings, this argument may appear only once.\n\nFor example, --opt val1 val2 is allowed, but --opt val1 val2 --opt val3 is not.\n\nNOTE: Setting this requires `takes_value` to be set to true.",
          "default": false,
          "type": "boolean"
        },
        "multipleOccurrences": {
          "description": "Specifies that the argument may appear more than once. For flags, this results in the number of occurrences of the flag being recorded. For example -ddd or -d -d -d would count as three occurrences. For options or arguments that take a value, this does not affect how many values they can accept. (i.e. only one at a time is allowed)\n\nFor example, --opt val1 --opt val2 is allowed, but --opt val1 val2 is not.",
          "default": false,
          "type": "boolean"
        },
        "numberOfValues": {
          "description": "Specifies how many values are required to satisfy this argument. For example, if you had a `-f <file>` argument where you wanted exactly 3 'files' you would set `number_of_values = 3`, and this argument wouldn't be satisfied unless the user provided 3 and only 3 values.\n\n**NOTE:** Does *not* require `multiple_occurrences = true` to be set. Setting `multiple_occurrences = true` would allow `-f <file> <file> <file> -f <file> <file> <file>` where as *not* setting it would only allow one occurrence of this argument.\n\n**NOTE:** implicitly sets `takes_value = true` and `multiple_values = true`.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint",
          "minimum": 0.0
        },
        "possibleValues": {
          "description": "Specifies a list of possible values for this argument. At runtime, the CLI verifies that only one of the specified values was used, or fails with an error message.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "minValues": {
          "description": "Specifies the minimum number of values for this argument. For example, if you had a -f `<file>` argument where you wanted at least 2 'files', you would set `minValues: 2`, and this argument would be satisfied if the user provided, 2 or more values.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint",
          "minimum": 0.0
        },
        "maxValues": {
          "description": "Specifies the maximum number of values are for this argument. For example, if you had a -f `<file>` argument where you wanted up to 3 'files', you would set .max_values(3), and this argument would be satisfied if the user provided, 1, 2, or 3 values.",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint",
          "minimum": 0.0
        },
        "required": {
          "description": "Sets whether or not the argument is required by default.\n\n- Required by default means it is required, when no other conflicting rules have been evaluated - Conflicting rules take precedence over being required.",
          "default": false,
          "type": "boolean"
        },
        "requiredUnlessPresent": {
          "description": "Sets an arg that override this arg's required setting i.e. this arg will be required unless this other argument is present.",
          "type": [
            "string",
            "null"
          ]
        },
        "requiredUnlessPresentAll": {
          "description": "Sets args that override this arg's required setting i.e. this arg will be required unless all these other arguments are present.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "requiredUnlessPresentAny": {
          "description": "Sets args that override this arg's required setting i.e. this arg will be required unless at least one of these other arguments are present.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "conflictsWith": {
          "description": "Sets a conflicting argument by name i.e. when using this argument, the following argument can't be present and vice versa.",
          "type": [
            "string",
            "null"
          ]
        },
        "conflictsWithAll": {
          "description": "The same as conflictsWith but allows specifying multiple two-way conflicts per argument.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "requires": {
          "description": "Tets an argument by name that is required when this one is present i.e. when using this argument, the following argument must be present.",
          "type": [
            "string",
            "null"
          ]
        },
        "requiresAll": {
          "description": "Sts multiple arguments by names that are required when this one is present i.e. when using this argument, the following arguments must be present.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "requiresIf": {
          "description": "Allows a conditional requirement with the signature [arg, value] the requirement will only become valid if `arg`'s value equals `${value}`.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "requiredIfEq": {
          "description": "Allows specifying that an argument is required conditionally with the signature [arg, value] the requirement will only become valid if the `arg`'s value equals `${value}`.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "requireEquals": {
          "description": "Requires that options use the --option=val syntax i.e. an equals between the option and associated value.",
          "type": [
            "boolean",
            "null"
          ]
        },
        "index": {
          "description": "The positional argument index, starting at 1.\n\nThe index refers to position according to other positional argument. It does not define position in the argument list as a whole. When utilized with multiple=true, only the last positional argument may be defined as multiple (i.e. the one with the highest index).",
          "type": [
            "integer",
            "null"
          ],
          "format": "uint",
          "minimum": 1.0
        }
      },
      "additionalProperties": false
    },
    "BundleConfig": {
      "description": "Configuration for tauri-bundler.\n\nSee more: https://tauri.app/v1/api/config#bundleconfig",
      "type": "object",
      "required": [
        "identifier"
      ],
      "properties": {
        "active": {
          "description": "Whether Tauri should bundle your application or just output the executable.",
          "default": false,
          "type": "boolean"
        },
        "targets": {
          "description": "The bundle targets, currently supports [\"deb\", \"appimage\", \"nsis\", \"msi\", \"app\", \"dmg\", \"updater\"] or \"all\".",
          "default": "all",
          "allOf": [
            {
              "$ref": "#/definitions/BundleTarget"
            }
          ]
        },
        "identifier": {
          "description": "The application identifier in reverse domain name notation (e.g. `com.tauri.example`). This string must be unique across applications since it is used in system configurations like the bundle ID and path to the webview data directory. This string must contain only alphanumeric characters (A–Z, a–z, and 0–9), hyphens (-), and periods (.).",
          "type": "string"
        },
        "publisher": {
          "description": "The application's publisher. Defaults to the second element in the identifier string. Currently maps to the Manufacturer property of the Windows Installer.",
          "type": [
            "string",
            "null"
          ]
        },
        "icon": {
          "description": "The app's icons",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "resources": {
          "description": "App resources to bundle. Each resource is a path to a file or directory. Glob patterns are supported.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "copyright": {
          "description": "A copyright string associated with your application.",
          "type": [
            "string",
            "null"
          ]
        },
        "category": {
          "description": "The application kind.\n\nShould be one of the following: Business, DeveloperTool, Education, Entertainment, Finance, Game, ActionGame, AdventureGame, ArcadeGame, BoardGame, CardGame, CasinoGame, DiceGame, EducationalGame, FamilyGame, KidsGame, MusicGame, PuzzleGame, RacingGame, RolePlayingGame, SimulationGame, SportsGame, StrategyGame, TriviaGame, WordGame, GraphicsAndDesign, HealthcareAndFitness, Lifestyle, Medical, Music, News, Photography, Productivity, Reference, SocialNetworking, Sports, Travel, Utility, Video, Weather.",
          "type": [
            "string",
            "null"
          ]
        },
        "shortDescription": {
          "description": "A short description of your application.",
          "type": [
            "string",
            "null"
          ]
        },
        "longDescription": {
          "description": "A longer, multi-line description of the application.",
          "type": [
            "string",
            "null"
          ]
        },
        "appimage": {
          "description": "Configuration for the AppImage bundle.",
          "default": {
            "bundleMediaFramework": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/AppImageConfig"
            }
          ]
        },
        "deb": {
          "description": "Configuration for the Debian bundle.",
          "default": {
            "files": {}
          },
          "allOf": [
            {
              "$ref": "#/definitions/DebConfig"
            }
          ]
        },
        "macOS": {
          "description": "Configuration for the macOS bundles.",
          "default": {
            "minimumSystemVersion": "10.13"
          },
          "allOf": [
            {
              "$ref": "#/definitions/MacConfig"
            }
          ]
        },
        "externalBin": {
          "description": "A list of—either absolute or relative—paths to binaries to embed with your application.\n\nNote that Tauri will look for system-specific binaries following the pattern \"binary-name{-target-triple}{.system-extension}\".\n\nE.g. for the external binary \"my-binary\", Tauri looks for:\n\n- \"my-binary-x86_64-pc-windows-msvc.exe\" for Windows - \"my-binary-x86_64-apple-darwin\" for macOS - \"my-binary-x86_64-unknown-linux-gnu\" for Linux\n\nso don't forget to provide binaries for all targeted platforms.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "windows": {
          "description": "Configuration for the Windows bundle.",
          "default": {
            "allowDowngrades": true,
            "certificateThumbprint": null,
            "digestAlgorithm": null,
            "nsis": null,
            "timestampUrl": null,
            "tsp": false,
            "webviewFixedRuntimePath": null,
            "webviewInstallMode": {
              "silent": true,
              "type": "downloadBootstrapper"
            },
            "wix": null
          },
          "allOf": [
            {
              "$ref": "#/definitions/WindowsConfig"
            }
          ]
        },
        "iOS": {
          "description": "iOS configuration.",
          "default": {},
          "allOf": [
            {
              "$ref": "#/definitions/IosConfig"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "BundleTarget": {
      "description": "Targets to bundle. Each value is case insensitive.",
      "anyOf": [
        {
          "description": "Bundle all targets.",
          "enum": [
            "all"
          ]
        },
        {
          "description": "A list of bundle targets.",
          "type": "array",
          "items": {
            "$ref": "#/definitions/BundleType"
          }
        },
        {
          "description": "A single bundle target.",
          "allOf": [
            {
              "$ref": "#/definitions/BundleType"
            }
          ]
        }
      ]
    },
    "BundleType": {
      "description": "A bundle referenced by tauri-bundler.",
      "oneOf": [
        {
          "description": "The debian bundle (.deb).",
          "type": "string",
          "enum": [
            "deb"
          ]
        },
        {
          "description": "The AppImage bundle (.appimage).",
          "type": "string",
          "enum": [
            "appimage"
          ]
        },
        {
          "description": "The Microsoft Installer bundle (.msi).",
          "type": "string",
          "enum": [
            "msi"
          ]
        },
        {
          "description": "The NSIS bundle (.exe).",
          "type": "string",
          "enum": [
            "nsis"
          ]
        },
        {
          "description": "The macOS application bundle (.app).",
          "type": "string",
          "enum": [
            "app"
          ]
        },
        {
          "description": "The Apple Disk Image bundle (.dmg).",
          "type": "string",
          "enum": [
            "dmg"
          ]
        },
        {
          "description": "The Tauri updater bundle.",
          "type": "string",
          "enum": [
            "updater"
          ]
        }
      ]
    },
    "AppImageConfig": {
      "description": "Configuration for AppImage bundles.\n\nSee more: https://tauri.app/v1/api/config#appimageconfig",
      "type": "object",
      "properties": {
        "bundleMediaFramework": {
          "description": "Include additional gstreamer dependencies needed for audio and video playback. This increases the bundle size by ~15-35MB depending on your build system.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "DebConfig": {
      "description": "Configuration for Debian (.deb) bundles.\n\nSee more: https://tauri.app/v1/api/config#debconfig",
      "type": "object",
      "properties": {
        "depends": {
          "description": "The list of deb dependencies your application relies on.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "files": {
          "description": "The files to include on the package.",
          "default": {},
          "type": "object",
          "additionalProperties": {
            "type": "string"
          }
        }
      },
      "additionalProperties": false
    },
    "MacConfig": {
      "description": "Configuration for the macOS bundles.\n\nSee more: https://tauri.app/v1/api/config#macconfig",
      "type": "object",
      "properties": {
        "frameworks": {
          "description": "A list of strings indicating any macOS X frameworks that need to be bundled with the application.\n\nIf a name is used, \".framework\" must be omitted and it will look for standard install locations. You may also use a path to a specific framework.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "minimumSystemVersion": {
          "description": "A version string indicating the minimum macOS X version that the bundled application supports. Defaults to `10.13`.\n\nSetting it to `null` completely removes the `LSMinimumSystemVersion` field on the bundle's `Info.plist` and the `MACOSX_DEPLOYMENT_TARGET` environment variable.\n\nAn empty string is considered an invalid value so the default value is used.",
          "default": "10.13",
          "type": [
            "string",
            "null"
          ]
        },
        "exceptionDomain": {
          "description": "Allows your application to communicate with the outside world. It should be a lowercase, without port and protocol domain name.",
          "type": [
            "string",
            "null"
          ]
        },
        "license": {
          "description": "The path to the license file to add to the DMG bundle.",
          "type": [
            "string",
            "null"
          ]
        },
        "signingIdentity": {
          "description": "Identity to use for code signing.",
          "type": [
            "string",
            "null"
          ]
        },
        "providerShortName": {
          "description": "Provider short name for notarization.",
          "type": [
            "string",
            "null"
          ]
        },
        "entitlements": {
          "description": "Path to the entitlements file.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "WindowsConfig": {
      "description": "Windows bundler configuration.\n\nSee more: https://tauri.app/v1/api/config#windowsconfig",
      "type": "object",
      "properties": {
        "digestAlgorithm": {
          "description": "Specifies the file digest algorithm to use for creating file signatures. Required for code signing. SHA-256 is recommended.",
          "type": [
            "string",
            "null"
          ]
        },
        "certificateThumbprint": {
          "description": "Specifies the SHA1 hash of the signing certificate.",
          "type": [
            "string",
            "null"
          ]
        },
        "timestampUrl": {
          "description": "Server to use during timestamping.",
          "type": [
            "string",
            "null"
          ]
        },
        "tsp": {
          "description": "Whether to use Time-Stamp Protocol (TSP, a.k.a. RFC 3161) for the timestamp server. Your code signing provider may use a TSP timestamp server, like e.g. SSL.com does. If so, enable TSP by setting to true.",
          "default": false,
          "type": "boolean"
        },
        "webviewInstallMode": {
          "description": "The installation mode for the Webview2 runtime.",
          "default": {
            "silent": true,
            "type": "downloadBootstrapper"
          },
          "allOf": [
            {
              "$ref": "#/definitions/WebviewInstallMode"
            }
          ]
        },
        "webviewFixedRuntimePath": {
          "description": "Path to the webview fixed runtime to use. Overwrites [`Self::webview_install_mode`] if set.\n\nWill be removed in v2, prefer the [`Self::webview_install_mode`] option.\n\nThe fixed version can be downloaded [on the official website](https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section). The `.cab` file must be extracted to a folder and this folder path must be defined on this field.",
          "type": [
            "string",
            "null"
          ]
        },
        "allowDowngrades": {
          "description": "Validates a second app installation, blocking the user from installing an older version if set to `false`.\n\nFor instance, if `1.2.1` is installed, the user won't be able to install app version `1.2.0` or `1.1.5`.\n\nThe default value of this flag is `true`.",
          "default": true,
          "type": "boolean"
        },
        "wix": {
          "description": "Configuration for the MSI generated with WiX.",
          "anyOf": [
            {
              "$ref": "#/definitions/WixConfig"
            },
            {
              "type": "null"
            }
          ]
        },
        "nsis": {
          "description": "Configuration for the installer generated with NSIS.",
          "anyOf": [
            {
              "$ref": "#/definitions/NsisConfig"
            },
            {
              "type": "null"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "WebviewInstallMode": {
      "description": "Install modes for the Webview2 runtime. Note that for the updater bundle [`Self::DownloadBootstrapper`] is used.\n\nFor more information see <https://tauri.app/v1/guides/building/windows>.",
      "oneOf": [
        {
          "description": "Do not install the Webview2 as part of the Windows Installer.",
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "skip"
              ]
            }
          },
          "additionalProperties": false
        },
        {
          "description": "Download the bootstrapper and run it. Requires an internet connection. Results in a smaller installer size, but is not recommended on Windows 7.",
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "downloadBootstrapper"
              ]
            },
            "silent": {
              "description": "Instructs the installer to run the bootstrapper in silent mode. Defaults to `true`.",
              "default": true,
              "type": "boolean"
            }
          },
          "additionalProperties": false
        },
        {
          "description": "Embed the bootstrapper and run it. Requires an internet connection. Increases the installer size by around 1.8MB, but offers better support on Windows 7.",
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "embedBootstrapper"
              ]
            },
            "silent": {
              "description": "Instructs the installer to run the bootstrapper in silent mode. Defaults to `true`.",
              "default": true,
              "type": "boolean"
            }
          },
          "additionalProperties": false
        },
        {
          "description": "Embed the offline installer and run it. Does not require an internet connection. Increases the installer size by around 127MB.",
          "type": "object",
          "required": [
            "type"
          ],
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "offlineInstaller"
              ]
            },
            "silent": {
              "description": "Instructs the installer to run the installer in silent mode. Defaults to `true`.",
              "default": true,
              "type": "boolean"
            }
          },
          "additionalProperties": false
        },
        {
          "description": "Embed a fixed webview2 version and use it at runtime. Increases the installer size by around 180MB.",
          "type": "object",
          "required": [
            "path",
            "type"
          ],
          "properties": {
            "type": {
              "type": "string",
              "enum": [
                "fixedRuntime"
              ]
            },
            "path": {
              "description": "The path to the fixed runtime to use.\n\nThe fixed version can be downloaded [on the official website](https://developer.microsoft.com/en-us/microsoft-edge/webview2/#download-section). The `.cab` file must be extracted to a folder and this folder path must be defined on this field.",
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      ]
    },
    "WixConfig": {
      "description": "Configuration for the MSI bundle using WiX.\n\nSee more: https://tauri.app/v1/api/config#wixconfig",
      "type": "object",
      "properties": {
        "language": {
          "description": "The installer languages to build. See <https://docs.microsoft.com/en-us/windows/win32/msi/localizing-the-error-and-actiontext-tables>.",
          "default": "en-US",
          "allOf": [
            {
              "$ref": "#/definitions/WixLanguage"
            }
          ]
        },
        "template": {
          "description": "A custom .wxs template to use.",
          "type": [
            "string",
            "null"
          ]
        },
        "fragmentPaths": {
          "description": "A list of paths to .wxs files with WiX fragments to use.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "componentGroupRefs": {
          "description": "The ComponentGroup element ids you want to reference from the fragments.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "componentRefs": {
          "description": "The Component element ids you want to reference from the fragments.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "featureGroupRefs": {
          "description": "The FeatureGroup element ids you want to reference from the fragments.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "featureRefs": {
          "description": "The Feature element ids you want to reference from the fragments.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "mergeRefs": {
          "description": "The Merge element ids you want to reference from the fragments.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "skipWebviewInstall": {
          "description": "Disables the Webview2 runtime installation after app install.\n\nWill be removed in v2, prefer the [`WindowsConfig::webview_install_mode`] option.",
          "default": false,
          "type": "boolean"
        },
        "license": {
          "description": "The path to the license file to render on the installer.\n\nMust be an RTF file, so if a different extension is provided, we convert it to the RTF format.",
          "type": [
            "string",
            "null"
          ]
        },
        "enableElevatedUpdateTask": {
          "description": "Create an elevated update task within Windows Task Scheduler.",
          "default": false,
          "type": "boolean"
        },
        "bannerPath": {
          "description": "Path to a bitmap file to use as the installation user interface banner. This bitmap will appear at the top of all but the first page of the installer.\n\nThe required dimensions are 493px × 58px.",
          "type": [
            "string",
            "null"
          ]
        },
        "dialogImagePath": {
          "description": "Path to a bitmap file to use on the installation user interface dialogs. It is used on the welcome and completion dialogs. The required dimensions are 493px × 312px.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "WixLanguage": {
      "description": "The languages to build using WiX.",
      "anyOf": [
        {
          "description": "A single language to build, without configuration.",
          "type": "string"
        },
        {
          "description": "A list of languages to build, without configuration.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "description": "A map of languages and its configuration.",
          "type": "object",
          "additionalProperties": {
            "$ref": "#/definitions/WixLanguageConfig"
          }
        }
      ]
    },
    "WixLanguageConfig": {
      "description": "Configuration for a target language for the WiX build.\n\nSee more: https://tauri.app/v1/api/config#wixlanguageconfig",
      "type": "object",
      "properties": {
        "localePath": {
          "description": "The path to a locale (`.wxl`) file. See <https://wixtoolset.org/documentation/manual/v3/howtos/ui_and_localization/build_a_localized_version.html>.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "NsisConfig": {
      "description": "Configuration for the Installer bundle using NSIS.",
      "type": "object",
      "properties": {
        "license": {
          "description": "The path to the license file to render on the installer.",
          "type": [
            "string",
            "null"
          ]
        },
        "headerImage": {
          "description": "The path to a bitmap file to display on the header of installers pages.\n\nThe recommended dimensions are 150px x 57px.",
          "type": [
            "string",
            "null"
          ]
        },
        "sidebarImage": {
          "description": "The path to a bitmap file for the Welcome page and the Finish page.\n\nThe recommended dimensions are 164px x 314px.",
          "type": [
            "string",
            "null"
          ]
        },
        "installerIcon": {
          "description": "The path to an icon file used as the installer icon.",
          "type": [
            "string",
            "null"
          ]
        },
        "installMode": {
          "description": "Whether the installation will be for all users or just the current user.",
          "default": "currentUser",
          "allOf": [
            {
              "$ref": "#/definitions/NSISInstallerMode"
            }
          ]
        },
        "languages": {
          "description": "A list of installer languages. By default the OS language is used. If the OS language is not in the list of languages, the first language will be used. To allow the user to select the language, set `display_language_selector` to `true`.\n\nSee <https://github.com/kichik/nsis/tree/9465c08046f00ccb6eda985abbdbf52c275c6c4d/Contrib/Language%20files> for the complete list of languages.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "displayLanguageSelector": {
          "description": "Whether to display a language selector dialog before the installer and uninstaller windows are rendered or not. By default the OS language is selected, with a fallback to the first language in the `languages` array.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "NSISInstallerMode": {
      "description": "Install Modes for the NSIS installer.",
      "oneOf": [
        {
          "description": "Default mode for the installer.\n\nInstall the app by default in a directory that doesn't require Administrator access.\n\nInstaller metadata will be saved under the `HKCU` registry path.",
          "type": "string",
          "enum": [
            "currentUser"
          ]
        },
        {
          "description": "Install the app by default in the `Program Files` folder directory requires Administrator access for the installation.\n\nInstaller metadata will be saved under the `HKLM` registry path.",
          "type": "string",
          "enum": [
            "perMachine"
          ]
        },
        {
          "description": "Combines both modes and allows the user to choose at install time whether to install for the current user or per machine. Note that this mode will require Administrator access even if the user wants to install it for the current user only.\n\nInstaller metadata will be saved under the `HKLM` or `HKCU` registry path based on the user's choice.",
          "type": "string",
          "enum": [
            "both"
          ]
        }
      ]
    },
    "IosConfig": {
      "description": "General configuration for the iOS target.",
      "type": "object",
      "properties": {
        "developmentTeam": {
          "description": "The development team. This value is required for iOS development because code signing is enforced. The `TAURI_APPLE_DEVELOPMENT_TEAM` environment variable can be set to overwrite it.",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "AllowlistConfig": {
      "description": "Allowlist configuration. The allowlist is a translation of the [Cargo allowlist features](https://docs.rs/tauri/latest/tauri/#cargo-allowlist-features).\n\n# Notes\n\n- Endpoints that don't have their own allowlist option are enabled by default. - There is only \"opt-in\", no \"opt-out\". Setting an option to `false` has no effect.\n\n# Examples\n\n- * [`\"app-all\": true`](https://tauri.app/v1/api/config/#appallowlistconfig.all) will make the [hide](https://tauri.app/v1/api/js/app#hide) endpoint be available regardless of whether `hide` is set to `false` or `true` in the allowlist.",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all API features.",
          "default": false,
          "type": "boolean"
        },
        "fs": {
          "description": "File system API allowlist.",
          "default": {
            "all": false,
            "copyFile": false,
            "createDir": false,
            "exists": false,
            "readDir": false,
            "readFile": false,
            "removeDir": false,
            "removeFile": false,
            "renameFile": false,
            "scope": [],
            "writeFile": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/FsAllowlistConfig"
            }
          ]
        },
        "window": {
          "description": "Window API allowlist.",
          "default": {
            "all": false,
            "center": false,
            "close": false,
            "create": false,
            "hide": false,
            "maximize": false,
            "minimize": false,
            "print": false,
            "requestUserAttention": false,
            "setAlwaysOnTop": false,
            "setContentProtected": false,
            "setCursorGrab": false,
            "setCursorIcon": false,
            "setCursorPosition": false,
            "setCursorVisible": false,
            "setDecorations": false,
            "setFocus": false,
            "setFullscreen": false,
            "setIcon": false,
            "setIgnoreCursorEvents": false,
            "setMaxSize": false,
            "setMinSize": false,
            "setPosition": false,
            "setResizable": false,
            "setShadow": false,
            "setSize": false,
            "setSkipTaskbar": false,
            "setTitle": false,
            "show": false,
            "startDragging": false,
            "unmaximize": false,
            "unminimize": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/WindowAllowlistConfig"
            }
          ]
        },
        "shell": {
          "description": "Shell API allowlist.",
          "default": {
            "all": false,
            "execute": false,
            "open": false,
            "scope": [],
            "sidecar": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/ShellAllowlistConfig"
            }
          ]
        },
        "dialog": {
          "description": "Dialog API allowlist.",
          "default": {
            "all": false,
            "ask": false,
            "confirm": false,
            "message": false,
            "open": false,
            "save": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/DialogAllowlistConfig"
            }
          ]
        },
        "http": {
          "description": "HTTP API allowlist.",
          "default": {
            "all": false,
            "request": false,
            "scope": []
          },
          "allOf": [
            {
              "$ref": "#/definitions/HttpAllowlistConfig"
            }
          ]
        },
        "notification": {
          "description": "Notification API allowlist.",
          "default": {
            "all": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/NotificationAllowlistConfig"
            }
          ]
        },
        "globalShortcut": {
          "description": "Global shortcut API allowlist.",
          "default": {
            "all": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/GlobalShortcutAllowlistConfig"
            }
          ]
        },
        "os": {
          "description": "OS allowlist.",
          "default": {
            "all": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/OsAllowlistConfig"
            }
          ]
        },
        "path": {
          "description": "Path API allowlist.",
          "default": {
            "all": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/PathAllowlistConfig"
            }
          ]
        },
        "protocol": {
          "description": "Custom protocol allowlist.",
          "default": {
            "all": false,
            "asset": false,
            "assetScope": []
          },
          "allOf": [
            {
              "$ref": "#/definitions/ProtocolAllowlistConfig"
            }
          ]
        },
        "process": {
          "description": "Process API allowlist.",
          "default": {
            "all": false,
            "exit": false,
            "relaunch": false,
            "relaunchDangerousAllowSymlinkMacos": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/ProcessAllowlistConfig"
            }
          ]
        },
        "clipboard": {
          "description": "Clipboard APIs allowlist.",
          "default": {
            "all": false,
            "readText": false,
            "writeText": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/ClipboardAllowlistConfig"
            }
          ]
        },
        "app": {
          "description": "App APIs allowlist.",
          "default": {
            "all": false,
            "hide": false,
            "show": false
          },
          "allOf": [
            {
              "$ref": "#/definitions/AppAllowlistConfig"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "FsAllowlistConfig": {
      "description": "Allowlist for the file system APIs.\n\nSee more: https://tauri.app/v1/api/config#fsallowlistconfig",
      "type": "object",
      "properties": {
        "scope": {
          "description": "The access scope for the filesystem APIs.",
          "default": [],
          "allOf": [
            {
              "$ref": "#/definitions/FsAllowlistScope"
            }
          ]
        },
        "all": {
          "description": "Use this flag to enable all file system API features.",
          "default": false,
          "type": "boolean"
        },
        "readFile": {
          "description": "Read file from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "writeFile": {
          "description": "Write file to local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "readDir": {
          "description": "Read directory from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "copyFile": {
          "description": "Copy file from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "createDir": {
          "description": "Create directory from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "removeDir": {
          "description": "Remove directory from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "removeFile": {
          "description": "Remove file from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "renameFile": {
          "description": "Rename file from local filesystem.",
          "default": false,
          "type": "boolean"
        },
        "exists": {
          "description": "Check if path exists on the local filesystem.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "FsAllowlistScope": {
      "description": "Filesystem scope definition. It is a list of glob patterns that restrict the API access from the webview.\n\nEach pattern can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
      "anyOf": [
        {
          "description": "A list of paths that are allowed by this scope.",
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        {
          "description": "A complete scope configuration.",
          "type": "object",
          "properties": {
            "allow": {
              "description": "A list of paths that are allowed by this scope.",
              "default": [],
              "type": "array",
              "items": {
                "type": "string"
              }
            },
            "deny": {
              "description": "A list of paths that are not allowed by this scope. This gets precedence over the [`Self::Scope::allow`] list.",
              "default": [],
              "type": "array",
              "items": {
                "type": "string"
              }
            }
          }
        }
      ]
    },
    "WindowAllowlistConfig": {
      "description": "Allowlist for the window APIs.\n\nSee more: https://tauri.app/v1/api/config#windowallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all window API features.",
          "default": false,
          "type": "boolean"
        },
        "create": {
          "description": "Allows dynamic window creation.",
          "default": false,
          "type": "boolean"
        },
        "center": {
          "description": "Allows centering the window.",
          "default": false,
          "type": "boolean"
        },
        "requestUserAttention": {
          "description": "Allows requesting user attention on the window.",
          "default": false,
          "type": "boolean"
        },
        "setResizable": {
          "description": "Allows setting the resizable flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setTitle": {
          "description": "Allows changing the window title.",
          "default": false,
          "type": "boolean"
        },
        "maximize": {
          "description": "Allows maximizing the window.",
          "default": false,
          "type": "boolean"
        },
        "unmaximize": {
          "description": "Allows unmaximizing the window.",
          "default": false,
          "type": "boolean"
        },
        "minimize": {
          "description": "Allows minimizing the window.",
          "default": false,
          "type": "boolean"
        },
        "unminimize": {
          "description": "Allows unminimizing the window.",
          "default": false,
          "type": "boolean"
        },
        "show": {
          "description": "Allows showing the window.",
          "default": false,
          "type": "boolean"
        },
        "hide": {
          "description": "Allows hiding the window.",
          "default": false,
          "type": "boolean"
        },
        "close": {
          "description": "Allows closing the window.",
          "default": false,
          "type": "boolean"
        },
        "setDecorations": {
          "description": "Allows setting the decorations flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setShadow": {
          "description": "Allows setting the shadow flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setAlwaysOnTop": {
          "description": "Allows setting the always_on_top flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setContentProtected": {
          "description": "Allows preventing the window contents from being captured by other apps.",
          "default": false,
          "type": "boolean"
        },
        "setSize": {
          "description": "Allows setting the window size.",
          "default": false,
          "type": "boolean"
        },
        "setMinSize": {
          "description": "Allows setting the window minimum size.",
          "default": false,
          "type": "boolean"
        },
        "setMaxSize": {
          "description": "Allows setting the window maximum size.",
          "default": false,
          "type": "boolean"
        },
        "setPosition": {
          "description": "Allows changing the position of the window.",
          "default": false,
          "type": "boolean"
        },
        "setFullscreen": {
          "description": "Allows setting the fullscreen flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setFocus": {
          "description": "Allows focusing the window.",
          "default": false,
          "type": "boolean"
        },
        "setIcon": {
          "description": "Allows changing the window icon.",
          "default": false,
          "type": "boolean"
        },
        "setSkipTaskbar": {
          "description": "Allows setting the skip_taskbar flag of the window.",
          "default": false,
          "type": "boolean"
        },
        "setCursorGrab": {
          "description": "Allows grabbing the cursor.",
          "default": false,
          "type": "boolean"
        },
        "setCursorVisible": {
          "description": "Allows setting the cursor visibility.",
          "default": false,
          "type": "boolean"
        },
        "setCursorIcon": {
          "description": "Allows changing the cursor icon.",
          "default": false,
          "type": "boolean"
        },
        "setCursorPosition": {
          "description": "Allows setting the cursor position.",
          "default": false,
          "type": "boolean"
        },
        "setIgnoreCursorEvents": {
          "description": "Allows ignoring cursor events.",
          "default": false,
          "type": "boolean"
        },
        "startDragging": {
          "description": "Allows start dragging on the window.",
          "default": false,
          "type": "boolean"
        },
        "print": {
          "description": "Allows opening the system dialog to print the window content.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "ShellAllowlistConfig": {
      "description": "Allowlist for the shell APIs.\n\nSee more: https://tauri.app/v1/api/config#shellallowlistconfig",
      "type": "object",
      "properties": {
        "scope": {
          "description": "Access scope for the binary execution APIs. Sidecars are automatically enabled.",
          "default": [],
          "allOf": [
            {
              "$ref": "#/definitions/ShellAllowlistScope"
            }
          ]
        },
        "all": {
          "description": "Use this flag to enable all shell API features.",
          "default": false,
          "type": "boolean"
        },
        "execute": {
          "description": "Enable binary execution.",
          "default": false,
          "type": "boolean"
        },
        "sidecar": {
          "description": "Enable sidecar execution, allowing the JavaScript layer to spawn a sidecar command, an executable that is shipped with the application. For more information see <https://tauri.app/v1/guides/building/sidecar>.",
          "default": false,
          "type": "boolean"
        },
        "open": {
          "description": "Open URL with the user's default application.",
          "default": false,
          "allOf": [
            {
              "$ref": "#/definitions/ShellAllowlistOpen"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "ShellAllowlistScope": {
      "description": "Shell scope definition. It is a list of command names and associated CLI arguments that restrict the API access from the webview.",
      "type": "array",
      "items": {
        "$ref": "#/definitions/ShellAllowedCommand"
      }
    },
    "ShellAllowedCommand": {
      "description": "A command allowed to be executed by the webview API.",
      "type": "object",
      "required": [
        "name"
      ],
      "properties": {
        "name": {
          "description": "The name for this allowed shell command configuration.\n\nThis name will be used inside of the webview API to call this command along with any specified arguments.",
          "type": "string"
        },
        "cmd": {
          "description": "The command name. It can start with a variable that resolves to a system base directory. The variables are: `$AUDIO`, `$CACHE`, `$CONFIG`, `$DATA`, `$LOCALDATA`, `$DESKTOP`, `$DOCUMENT`, `$DOWNLOAD`, `$EXE`, `$FONT`, `$HOME`, `$PICTURE`, `$PUBLIC`, `$RUNTIME`, `$TEMPLATE`, `$VIDEO`, `$RESOURCE`, `$APP`, `$LOG`, `$TEMP`, `$APPCONFIG`, `$APPDATA`, `$APPLOCALDATA`, `$APPCACHE`, `$APPLOG`.",
          "default": "",
          "type": "string"
        },
        "args": {
          "description": "The allowed arguments for the command execution.",
          "default": false,
          "allOf": [
            {
              "$ref": "#/definitions/ShellAllowedArgs"
            }
          ]
        },
        "sidecar": {
          "description": "If this command is a sidecar command.",
          "default": false,
          "type": "boolean"
        }
      }
    },
    "ShellAllowedArgs": {
      "description": "A set of command arguments allowed to be executed by the webview API.\n\nA value of `true` will allow any arguments to be passed to the command. `false` will disable all arguments. A list of [`ShellAllowedArg`] will set those arguments as the only valid arguments to be passed to the attached command configuration.",
      "anyOf": [
        {
          "description": "Use a simple boolean to allow all or disable all arguments to this command configuration.",
          "type": "boolean"
        },
        {
          "description": "A specific set of [`ShellAllowedArg`] that are valid to call for the command configuration.",
          "type": "array",
          "items": {
            "$ref": "#/definitions/ShellAllowedArg"
          }
        }
      ]
    },
    "ShellAllowedArg": {
      "description": "A command argument allowed to be executed by the webview API.",
      "anyOf": [
        {
          "description": "A non-configurable argument that is passed to the command in the order it was specified.",
          "type": "string"
        },
        {
          "description": "A variable that is set while calling the command from the webview API.",
          "type": "object",
          "required": [
            "validator"
          ],
          "properties": {
            "validator": {
              "description": "[regex] validator to require passed values to conform to an expected input.\n\nThis will require the argument value passed to this variable to match the `validator` regex before it will be executed.\n\n[regex]: https://docs.rs/regex/latest/regex/#syntax",
              "type": "string"
            }
          },
          "additionalProperties": false
        }
      ]
    },
    "ShellAllowlistOpen": {
      "description": "Defines the `shell > open` api scope.",
      "anyOf": [
        {
          "description": "If the shell open API should be enabled.\n\nIf enabled, the default validation regex (`^((mailto:\\w+)|(tel:\\w+)|(https?://\\w+)).+`) is used.",
          "type": "boolean"
        },
        {
          "description": "Enable the shell open API, with a custom regex that the opened path must match against.\n\nIf using a custom regex to support a non-http(s) schema, care should be used to prevent values that allow flag-like strings to pass validation. e.g. `--enable-debugging`, `-i`, `/R`.",
          "type": "string"
        }
      ]
    },
    "DialogAllowlistConfig": {
      "description": "Allowlist for the dialog APIs.\n\nSee more: https://tauri.app/v1/api/config#dialogallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all dialog API features.",
          "default": false,
          "type": "boolean"
        },
        "open": {
          "description": "Allows the API to open a dialog window to pick files.",
          "default": false,
          "type": "boolean"
        },
        "save": {
          "description": "Allows the API to open a dialog window to pick where to save files.",
          "default": false,
          "type": "boolean"
        },
        "message": {
          "description": "Allows the API to show a message dialog window.",
          "default": false,
          "type": "boolean"
        },
        "ask": {
          "description": "Allows the API to show a dialog window with Yes/No buttons.",
          "default": false,
          "type": "boolean"
        },
        "confirm": {
          "description": "Allows the API to show a dialog window with Ok/Cancel buttons.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "HttpAllowlistConfig": {
      "description": "Allowlist for the HTTP APIs.\n\nSee more: https://tauri.app/v1/api/config#httpallowlistconfig",
      "type": "object",
      "properties": {
        "scope": {
          "description": "The access scope for the HTTP APIs.",
          "default": [],
          "allOf": [
            {
              "$ref": "#/definitions/HttpAllowlistScope"
            }
          ]
        },
        "all": {
          "description": "Use this flag to enable all HTTP API features.",
          "default": false,
          "type": "boolean"
        },
        "request": {
          "description": "Allows making HTTP requests.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "HttpAllowlistScope": {
      "description": "HTTP API scope definition. It is a list of URLs that can be accessed by the webview when using the HTTP APIs. The scoped URL is matched against the request URL using a glob pattern.\n\nExamples: - \"https://**\": allows all HTTPS urls - \"https://*.github.com/tauri-apps/tauri\": allows any subdomain of \"github.com\" with the \"tauri-apps/api\" path - \"https://myapi.service.com/users/*\": allows access to any URLs that begins with \"https://myapi.service.com/users/\"",
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      }
    },
    "NotificationAllowlistConfig": {
      "description": "Allowlist for the notification APIs.\n\nSee more: https://tauri.app/v1/api/config#notificationallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all notification API features.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "GlobalShortcutAllowlistConfig": {
      "description": "Allowlist for the global shortcut APIs.\n\nSee more: https://tauri.app/v1/api/config#globalshortcutallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all global shortcut API features.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "OsAllowlistConfig": {
      "description": "Allowlist for the OS APIs.\n\nSee more: https://tauri.app/v1/api/config#osallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all OS API features.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "PathAllowlistConfig": {
      "description": "Allowlist for the path APIs.\n\nSee more: https://tauri.app/v1/api/config#pathallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all path API features.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "ProtocolAllowlistConfig": {
      "description": "Allowlist for the custom protocols.\n\nSee more: https://tauri.app/v1/api/config#protocolallowlistconfig",
      "type": "object",
      "properties": {
        "assetScope": {
          "description": "The access scope for the asset protocol.",
          "default": [],
          "allOf": [
            {
              "$ref": "#/definitions/FsAllowlistScope"
            }
          ]
        },
        "all": {
          "description": "Use this flag to enable all custom protocols.",
          "default": false,
          "type": "boolean"
        },
        "asset": {
          "description": "Enables the asset protocol.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "ProcessAllowlistConfig": {
      "description": "Allowlist for the process APIs.\n\nSee more: https://tauri.app/v1/api/config#processallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all process APIs.",
          "default": false,
          "type": "boolean"
        },
        "relaunch": {
          "description": "Enables the relaunch API.",
          "default": false,
          "type": "boolean"
        },
        "relaunchDangerousAllowSymlinkMacos": {
          "description": "Dangerous option that allows macOS to relaunch even if the binary contains a symlink.\n\nThis is due to macOS having less symlink protection. Highly recommended to not set this flag unless you have a very specific reason too, and understand the implications of it.",
          "default": false,
          "type": "boolean"
        },
        "exit": {
          "description": "Enables the exit API.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "ClipboardAllowlistConfig": {
      "description": "Allowlist for the clipboard APIs.\n\nSee more: https://tauri.app/v1/api/config#clipboardallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all clipboard APIs.",
          "default": false,
          "type": "boolean"
        },
        "writeText": {
          "description": "Enables the clipboard's `writeText` API.",
          "default": false,
          "type": "boolean"
        },
        "readText": {
          "description": "Enables the clipboard's `readText` API.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "AppAllowlistConfig": {
      "description": "Allowlist for the app APIs.\n\nSee more: https://tauri.app/v1/api/config#appallowlistconfig",
      "type": "object",
      "properties": {
        "all": {
          "description": "Use this flag to enable all app APIs.",
          "default": false,
          "type": "boolean"
        },
        "show": {
          "description": "Enables the app's `show` API.",
          "default": false,
          "type": "boolean"
        },
        "hide": {
          "description": "Enables the app's `hide` API.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "SecurityConfig": {
      "description": "Security configuration.\n\nSee more: https://tauri.app/v1/api/config#securityconfig",
      "type": "object",
      "properties": {
        "csp": {
          "description": "The Content Security Policy that will be injected on all HTML files on the built application. If [`dev_csp`](#SecurityConfig.devCsp) is not specified, this value is also injected on dev.\n\nThis is a really important part of the configuration since it helps you ensure your WebView is secured. See <https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP>.",
          "anyOf": [
            {
              "$ref": "#/definitions/Csp"
            },
            {
              "type": "null"
            }
          ]
        },
        "devCsp": {
          "description": "The Content Security Policy that will be injected on all HTML files on development.\n\nThis is a really important part of the configuration since it helps you ensure your WebView is secured. See <https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP>.",
          "anyOf": [
            {
              "$ref": "#/definitions/Csp"
            },
            {
              "type": "null"
            }
          ]
        },
        "freezePrototype": {
          "description": "Freeze the `Object.prototype` when using the custom protocol.",
          "default": false,
          "type": "boolean"
        },
        "dangerousDisableAssetCspModification": {
          "description": "Disables the Tauri-injected CSP sources.\n\nAt compile time, Tauri parses all the frontend assets and changes the Content-Security-Policy to only allow loading of your own scripts and styles by injecting nonce and hash sources. This stricts your CSP, which may introduce issues when using along with other flexing sources.\n\nThis configuration option allows both a boolean and a list of strings as value. A boolean instructs Tauri to disable the injection for all CSP injections, and a list of strings indicates the CSP directives that Tauri cannot inject.\n\n**WARNING:** Only disable this if you know what you are doing and have properly configured the CSP. Your application might be vulnerable to XSS attacks without this Tauri protection.",
          "default": false,
          "allOf": [
            {
              "$ref": "#/definitions/DisabledCspModificationKind"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "Csp": {
      "description": "A Content-Security-Policy definition. See <https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP>.",
      "anyOf": [
        {
          "description": "The entire CSP policy in a single text string.",
          "type": "string"
        },
        {
          "description": "An object mapping a directive with its sources values as a list of strings.",
          "type": "object",
          "additionalProperties": {
            "$ref": "#/definitions/CspDirectiveSources"
          }
        }
      ]
    },
    "CspDirectiveSources": {
      "description": "A Content-Security-Policy directive source list. See <https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/Sources#sources>.",
      "anyOf": [
        {
          "description": "An inline list of CSP sources. Same as [`Self::List`], but concatenated with a space separator.",
          "type": "string"
        },
        {
          "description": "A list of CSP sources. The collection will be concatenated with a space separator for the CSP string.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "DisabledCspModificationKind": {
      "description": "The possible values for the `dangerous_disable_asset_csp_modification` config option.",
      "anyOf": [
        {
          "description": "If `true`, disables all CSP modification. `false` is the default value and it configures Tauri to control the CSP.",
          "type": "boolean"
        },
        {
          "description": "Disables the given list of CSP directives modifications.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "UpdaterConfig": {
      "description": "The Updater configuration object.\n\nSee more: https://tauri.app/v1/api/config#updaterconfig",
      "type": "object",
      "properties": {
        "active": {
          "description": "Whether the updater is active or not.",
          "default": false,
          "type": "boolean"
        },
        "dialog": {
          "description": "Display built-in dialog or use event system if disabled.",
          "default": true,
          "type": "boolean"
        },
        "endpoints": {
          "description": "The updater endpoints. TLS is enforced on production.\n\nThe updater URL can contain the following variables: - {{current_version}}: The version of the app that is requesting the update - {{target}}: The operating system name (one of `linux`, `windows` or `darwin`). - {{arch}}: The architecture of the machine (one of `x86_64`, `i686`, `aarch64` or `armv7`).\n\n# Examples - \"https://my.cdn.com/latest.json\": a raw JSON endpoint that returns the latest version and download links for each platform. - \"https://updates.app.dev/{{target}}?version={{current_version}}&arch={{arch}}\": a dedicated API with positional and query string arguments.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "$ref": "#/definitions/UpdaterEndpoint"
          }
        },
        "pubkey": {
          "description": "Signature public key.",
          "default": "",
          "type": "string"
        },
        "windows": {
          "description": "The Windows configuration for the updater.",
          "default": {
            "installMode": "passive",
            "installerArgs": []
          },
          "allOf": [
            {
              "$ref": "#/definitions/UpdaterWindowsConfig"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "UpdaterEndpoint": {
      "description": "A URL to an updater server.\n\nThe URL must use the `https` scheme on production.",
      "type": "string",
      "format": "uri"
    },
    "UpdaterWindowsConfig": {
      "description": "The updater configuration for Windows.\n\nSee more: https://tauri.app/v1/api/config#updaterwindowsconfig",
      "type": "object",
      "properties": {
        "installerArgs": {
          "description": "Additional arguments given to the NSIS or WiX installer.",
          "default": [],
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "installMode": {
          "description": "The installation mode for the update on Windows. Defaults to `passive`.",
          "default": "passive",
          "allOf": [
            {
              "$ref": "#/definitions/WindowsUpdateInstallMode"
            }
          ]
        }
      },
      "additionalProperties": false
    },
    "WindowsUpdateInstallMode": {
      "description": "Install modes for the Windows update.",
      "oneOf": [
        {
          "description": "Specifies there's a basic UI during the installation process, including a final dialog box at the end.",
          "type": "string",
          "enum": [
            "basicUi"
          ]
        },
        {
          "description": "The quiet mode means there's no user interaction required. Requires admin privileges if the installer does (WiX).",
          "type": "string",
          "enum": [
            "quiet"
          ]
        },
        {
          "description": "Specifies unattended mode, which means the installation only shows a progress bar.",
          "type": "string",
          "enum": [
            "passive"
          ]
        }
      ]
    },
    "SystemTrayConfig": {
      "description": "Configuration for application system tray icon.\n\nSee more: https://tauri.app/v1/api/config#systemtrayconfig",
      "type": "object",
      "required": [
        "iconPath"
      ],
      "properties": {
        "iconPath": {
          "description": "Path to the default icon to use on the system tray.",
          "type": "string"
        },
        "iconAsTemplate": {
          "description": "A Boolean value that determines whether the image represents a [template](https://developer.apple.com/documentation/appkit/nsimage/1520017-template?language=objc) image on macOS.",
          "default": false,
          "type": "boolean"
        },
        "menuOnLeftClick": {
          "description": "A Boolean value that determines whether the menu should appear when the tray icon receives a left click on macOS.",
          "default": true,
          "type": "boolean"
        },
        "title": {
          "description": "Title for MacOS tray",
          "type": [
            "string",
            "null"
          ]
        }
      },
      "additionalProperties": false
    },
    "BuildConfig": {
      "description": "The Build configuration object.\n\nSee more: https://tauri.app/v1/api/config#buildconfig",
      "type": "object",
      "properties": {
        "runner": {
          "description": "The binary used to build and run the application.",
          "type": [
            "string",
            "null"
          ]
        },
        "devPath": {
          "description": "The path to the application assets or URL to load in development.\n\nThis is usually an URL to a dev server, which serves your application assets with live reloading. Most modern JavaScript bundlers provides a way to start a dev server by default.\n\nSee [vite](https://vitejs.dev/guide/), [Webpack DevServer](https://webpack.js.org/configuration/dev-server/) and [sirv](https://github.com/lukeed/sirv) for examples on how to set up a dev server.",
          "default": "http://localhost:8080/",
          "allOf": [
            {
              "$ref": "#/definitions/AppUrl"
            }
          ]
        },
        "distDir": {
          "description": "The path to the application assets or URL to load in production.\n\nWhen a path relative to the configuration file is provided, it is read recursively and all files are embedded in the application binary. Tauri then looks for an `index.html` file unless you provide a custom window URL.\n\nYou can also provide a list of paths to be embedded, which allows granular control over what files are added to the binary. In this case, all files are added to the root and you must reference it that way in your HTML files.\n\nWhen an URL is provided, the application won't have bundled assets and the application will load that URL by default.",
          "default": "../dist",
          "allOf": [
            {
              "$ref": "#/definitions/AppUrl"
            }
          ]
        },
        "beforeDevCommand": {
          "description": "A shell command to run before `tauri dev` kicks in.\n\nThe TAURI_PLATFORM, TAURI_ARCH, TAURI_FAMILY, TAURI_PLATFORM_VERSION, TAURI_PLATFORM_TYPE and TAURI_DEBUG environment variables are set if you perform conditional compilation.",
          "anyOf": [
            {
              "$ref": "#/definitions/BeforeDevCommand"
            },
            {
              "type": "null"
            }
          ]
        },
        "beforeBuildCommand": {
          "description": "A shell command to run before `tauri build` kicks in.\n\nThe TAURI_PLATFORM, TAURI_ARCH, TAURI_FAMILY, TAURI_PLATFORM_VERSION, TAURI_PLATFORM_TYPE and TAURI_DEBUG environment variables are set if you perform conditional compilation.",
          "anyOf": [
            {
              "$ref": "#/definitions/HookCommand"
            },
            {
              "type": "null"
            }
          ]
        },
        "beforeBundleCommand": {
          "description": "A shell command to run before the bundling phase in `tauri build` kicks in.\n\nThe TAURI_PLATFORM, TAURI_ARCH, TAURI_FAMILY, TAURI_PLATFORM_VERSION, TAURI_PLATFORM_TYPE and TAURI_DEBUG environment variables are set if you perform conditional compilation.",
          "anyOf": [
            {
              "$ref": "#/definitions/HookCommand"
            },
            {
              "type": "null"
            }
          ]
        },
        "features": {
          "description": "Features passed to `cargo` commands.",
          "type": [
            "array",
            "null"
          ],
          "items": {
            "type": "string"
          }
        },
        "withGlobalTauri": {
          "description": "Whether we should inject the Tauri API on `window.__TAURI__` or not.",
          "default": false,
          "type": "boolean"
        }
      },
      "additionalProperties": false
    },
    "AppUrl": {
      "description": "Defines the URL or assets to embed in the application.",
      "anyOf": [
        {
          "description": "The app's external URL, or the path to the directory containing the app assets.",
          "allOf": [
            {
              "$ref": "#/definitions/WindowUrl"
            }
          ]
        },
        {
          "description": "An array of files to embed on the app.",
          "type": "array",
          "items": {
            "type": "string"
          }
        }
      ]
    },
    "BeforeDevCommand": {
      "description": "Describes the shell command to run before `tauri dev`.",
      "anyOf": [
        {
          "description": "Run the given script with the default options.",
          "type": "string"
        },
        {
          "description": "Run the given script with custom options.",
          "type": "object",
          "required": [
            "script"
          ],
          "properties": {
            "script": {
              "description": "The script to execute.",
              "type": "string"
            },
            "cwd": {
              "description": "The current working directory.",
              "type": [
                "string",
                "null"
              ]
            },
            "wait": {
              "description": "Whether `tauri dev` should wait for the command to finish or not. Defaults to `false`.",
              "default": false,
              "type": "boolean"
            }
          }
        }
      ]
    },
    "HookCommand": {
      "description": "Describes a shell command to be executed when a CLI hook is triggered.",
      "anyOf": [
        {
          "description": "Run the given script with the default options.",
          "type": "string"
        },
        {
          "description": "Run the given script with custom options.",
          "type": "object",
          "required": [
            "script"
          ],
          "properties": {
            "script": {
              "description": "The script to execute.",
              "type": "string"
            },
            "cwd": {
              "description": "The current working directory.",
              "type": [
                "string",
                "null"
              ]
            }
          }
        }
      ]
    },
    "PluginConfig": {
      "description": "The plugin configs holds a HashMap mapping a plugin name to its configuration object.\n\nSee more: https://tauri.app/v1/api/config#pluginconfig",
      "type": "object",
      "additionalProperties": true
    }
  }
}