wrangler 4.34.0 → 4.36.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/config-schema.json +271 -50
- package/package.json +12 -11
- package/wrangler-dist/cli.d.ts +164 -47
- package/wrangler-dist/cli.js +73637 -13005
- package/wrangler-dist/metafile-cjs.json +1 -1
package/config-schema.json
CHANGED
@@ -325,9 +325,9 @@
|
|
325
325
|
"type": "string",
|
326
326
|
"description": "The ID of the KV namespace used during `wrangler dev`"
|
327
327
|
},
|
328
|
-
"
|
328
|
+
"remote": {
|
329
329
|
"type": "boolean",
|
330
|
-
"description": "Whether the KV namespace should be remote or not
|
330
|
+
"description": "Whether the KV namespace should be remote or not"
|
331
331
|
}
|
332
332
|
},
|
333
333
|
"required": [
|
@@ -357,6 +357,10 @@
|
|
357
357
|
"type": "string"
|
358
358
|
},
|
359
359
|
"description": "If this binding should be restricted to a set of verified addresses"
|
360
|
+
},
|
361
|
+
"remote": {
|
362
|
+
"type": "boolean",
|
363
|
+
"description": "Whether the binding should be remote or not"
|
360
364
|
}
|
361
365
|
},
|
362
366
|
"required": [
|
@@ -387,9 +391,9 @@
|
|
387
391
|
"type": "number",
|
388
392
|
"description": "The number of seconds to wait before delivering a message"
|
389
393
|
},
|
390
|
-
"
|
394
|
+
"remote": {
|
391
395
|
"type": "boolean",
|
392
|
-
"description": "Whether the Queue producer should be remote or not
|
396
|
+
"description": "Whether the Queue producer should be remote or not"
|
393
397
|
}
|
394
398
|
},
|
395
399
|
"required": [
|
@@ -481,9 +485,9 @@
|
|
481
485
|
"type": "string",
|
482
486
|
"description": "The jurisdiction that the bucket exists in. Default if not present."
|
483
487
|
},
|
484
|
-
"
|
488
|
+
"remote": {
|
485
489
|
"type": "boolean",
|
486
|
-
"description": "Whether the R2 bucket should be remote or not
|
490
|
+
"description": "Whether the R2 bucket should be remote or not"
|
487
491
|
}
|
488
492
|
},
|
489
493
|
"required": [
|
@@ -527,9 +531,9 @@
|
|
527
531
|
"type": "string",
|
528
532
|
"description": "Internal use only."
|
529
533
|
},
|
530
|
-
"
|
534
|
+
"remote": {
|
531
535
|
"type": "boolean",
|
532
|
-
"description": "Whether the D1 database should be remote or not
|
536
|
+
"description": "Whether the D1 database should be remote or not"
|
533
537
|
}
|
534
538
|
},
|
535
539
|
"required": [
|
@@ -553,9 +557,9 @@
|
|
553
557
|
"type": "string",
|
554
558
|
"description": "The name of the index."
|
555
559
|
},
|
556
|
-
"
|
560
|
+
"remote": {
|
557
561
|
"type": "boolean",
|
558
|
-
"description": "Whether the Vectorize index should be remote or not
|
562
|
+
"description": "Whether the Vectorize index should be remote or not"
|
559
563
|
}
|
560
564
|
},
|
561
565
|
"required": [
|
@@ -616,9 +620,9 @@
|
|
616
620
|
"additionalProperties": {},
|
617
621
|
"description": "Optional properties that will be made available to the service via ctx.props."
|
618
622
|
},
|
619
|
-
"
|
623
|
+
"remote": {
|
620
624
|
"type": "boolean",
|
621
|
-
"description": "Whether the service binding should be remote or not
|
625
|
+
"description": "Whether the service binding should be remote or not"
|
622
626
|
}
|
623
627
|
},
|
624
628
|
"required": [
|
@@ -658,9 +662,9 @@
|
|
658
662
|
"binding": {
|
659
663
|
"type": "string"
|
660
664
|
},
|
661
|
-
"
|
665
|
+
"remote": {
|
662
666
|
"type": "boolean",
|
663
|
-
"description": "Whether the Browser binding should be remote or not
|
667
|
+
"description": "Whether the Browser binding should be remote or not"
|
664
668
|
}
|
665
669
|
},
|
666
670
|
"required": [
|
@@ -679,9 +683,9 @@
|
|
679
683
|
"staging": {
|
680
684
|
"type": "boolean"
|
681
685
|
},
|
682
|
-
"
|
686
|
+
"remote": {
|
683
687
|
"type": "boolean",
|
684
|
-
"description": "Whether the AI binding should be remote or not
|
688
|
+
"description": "Whether the AI binding should be remote or not"
|
685
689
|
}
|
686
690
|
},
|
687
691
|
"required": [
|
@@ -697,9 +701,9 @@
|
|
697
701
|
"binding": {
|
698
702
|
"type": "string"
|
699
703
|
},
|
700
|
-
"
|
704
|
+
"remote": {
|
701
705
|
"type": "boolean",
|
702
|
-
"description": "Whether the Images binding should be remote or not
|
706
|
+
"description": "Whether the Images binding should be remote or not"
|
703
707
|
}
|
704
708
|
},
|
705
709
|
"required": [
|
@@ -731,10 +735,50 @@
|
|
731
735
|
"type": "object",
|
732
736
|
"properties": {
|
733
737
|
"name": {
|
734
|
-
"type": "string"
|
738
|
+
"type": "string",
|
739
|
+
"description": "The name of the binding provided to the Worker"
|
735
740
|
},
|
736
741
|
"type": {
|
737
|
-
"type": "string"
|
742
|
+
"type": "string",
|
743
|
+
"description": "The 'type' of the unsafe binding."
|
744
|
+
},
|
745
|
+
"dev": {
|
746
|
+
"type": "object",
|
747
|
+
"properties": {
|
748
|
+
"plugin": {
|
749
|
+
"type": "object",
|
750
|
+
"properties": {
|
751
|
+
"package": {
|
752
|
+
"type": "string",
|
753
|
+
"description": "Package is the bare specifier of the package that exposes plugins to integrate into Miniflare via a named `plugins` export.",
|
754
|
+
"examples": [
|
755
|
+
"@cloudflare/my-external-miniflare-plugin"
|
756
|
+
]
|
757
|
+
},
|
758
|
+
"name": {
|
759
|
+
"type": "string",
|
760
|
+
"description": "Plugin is the name of the plugin exposed by the package.",
|
761
|
+
"examples": [
|
762
|
+
"MY_UNSAFE_PLUGIN"
|
763
|
+
]
|
764
|
+
}
|
765
|
+
},
|
766
|
+
"required": [
|
767
|
+
"package",
|
768
|
+
"name"
|
769
|
+
],
|
770
|
+
"additionalProperties": false
|
771
|
+
},
|
772
|
+
"options": {
|
773
|
+
"type": "object",
|
774
|
+
"additionalProperties": {},
|
775
|
+
"description": "Optional mapping of unsafe bindings names to options provided for the plugin."
|
776
|
+
}
|
777
|
+
},
|
778
|
+
"required": [
|
779
|
+
"plugin"
|
780
|
+
],
|
781
|
+
"additionalProperties": false
|
738
782
|
}
|
739
783
|
},
|
740
784
|
"required": [
|
@@ -804,9 +848,9 @@
|
|
804
848
|
"type": "string",
|
805
849
|
"description": "The uuid of the uploaded mTLS certificate"
|
806
850
|
},
|
807
|
-
"
|
851
|
+
"remote": {
|
808
852
|
"type": "boolean",
|
809
|
-
"description": "Whether the mtls fetcher should be remote or not
|
853
|
+
"description": "Whether the mtls fetcher should be remote or not"
|
810
854
|
}
|
811
855
|
},
|
812
856
|
"required": [
|
@@ -843,9 +887,9 @@
|
|
843
887
|
"$ref": "#/definitions/DispatchNamespaceOutbound",
|
844
888
|
"description": "Details about the outbound Worker which will handle outbound requests from your namespace"
|
845
889
|
},
|
846
|
-
"
|
890
|
+
"remote": {
|
847
891
|
"type": "boolean",
|
848
|
-
"description": "Whether the Dispatch Namespace should be remote or not
|
892
|
+
"description": "Whether the Dispatch Namespace should be remote or not"
|
849
893
|
}
|
850
894
|
},
|
851
895
|
"required": [
|
@@ -930,6 +974,53 @@
|
|
930
974
|
"description": "**DO NOT USE**. Hello World Binding Config to serve as an explanatory example.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
931
975
|
"default": []
|
932
976
|
},
|
977
|
+
"ratelimits": {
|
978
|
+
"type": "array",
|
979
|
+
"items": {
|
980
|
+
"type": "object",
|
981
|
+
"properties": {
|
982
|
+
"name": {
|
983
|
+
"type": "string",
|
984
|
+
"description": "The binding name used to refer to the rate limiter in the Worker."
|
985
|
+
},
|
986
|
+
"namespace_id": {
|
987
|
+
"type": "string",
|
988
|
+
"description": "The namespace ID for this rate limiter."
|
989
|
+
},
|
990
|
+
"simple": {
|
991
|
+
"type": "object",
|
992
|
+
"properties": {
|
993
|
+
"limit": {
|
994
|
+
"type": "number",
|
995
|
+
"description": "The maximum number of requests allowed in the time period."
|
996
|
+
},
|
997
|
+
"period": {
|
998
|
+
"type": "number",
|
999
|
+
"enum": [
|
1000
|
+
10,
|
1001
|
+
60
|
1002
|
+
],
|
1003
|
+
"description": "The time period in seconds (10 for ten seconds, 60 for one minute)."
|
1004
|
+
}
|
1005
|
+
},
|
1006
|
+
"required": [
|
1007
|
+
"limit",
|
1008
|
+
"period"
|
1009
|
+
],
|
1010
|
+
"additionalProperties": false,
|
1011
|
+
"description": "Simple rate limiting configuration."
|
1012
|
+
}
|
1013
|
+
},
|
1014
|
+
"required": [
|
1015
|
+
"name",
|
1016
|
+
"namespace_id",
|
1017
|
+
"simple"
|
1018
|
+
],
|
1019
|
+
"additionalProperties": false
|
1020
|
+
},
|
1021
|
+
"description": "Specifies rate limit bindings that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
1022
|
+
"default": []
|
1023
|
+
},
|
933
1024
|
"pages_build_output_dir": {
|
934
1025
|
"type": "string",
|
935
1026
|
"description": "The directory of static assets to serve.\n\nThe presence of this field in a Wrangler configuration file indicates a Pages project, and will prompt the handling of the configuration file according to the Pages-specific validation rules."
|
@@ -1327,9 +1418,9 @@
|
|
1327
1418
|
"type": "string",
|
1328
1419
|
"description": "The ID of the KV namespace used during `wrangler dev`"
|
1329
1420
|
},
|
1330
|
-
"
|
1421
|
+
"remote": {
|
1331
1422
|
"type": "boolean",
|
1332
|
-
"description": "Whether the KV namespace should be remote or not
|
1423
|
+
"description": "Whether the KV namespace should be remote or not"
|
1333
1424
|
}
|
1334
1425
|
},
|
1335
1426
|
"required": [
|
@@ -1359,6 +1450,10 @@
|
|
1359
1450
|
"type": "string"
|
1360
1451
|
},
|
1361
1452
|
"description": "If this binding should be restricted to a set of verified addresses"
|
1453
|
+
},
|
1454
|
+
"remote": {
|
1455
|
+
"type": "boolean",
|
1456
|
+
"description": "Whether the binding should be remote or not"
|
1362
1457
|
}
|
1363
1458
|
},
|
1364
1459
|
"required": [
|
@@ -1389,9 +1484,9 @@
|
|
1389
1484
|
"type": "number",
|
1390
1485
|
"description": "The number of seconds to wait before delivering a message"
|
1391
1486
|
},
|
1392
|
-
"
|
1487
|
+
"remote": {
|
1393
1488
|
"type": "boolean",
|
1394
|
-
"description": "Whether the Queue producer should be remote or not
|
1489
|
+
"description": "Whether the Queue producer should be remote or not"
|
1395
1490
|
}
|
1396
1491
|
},
|
1397
1492
|
"required": [
|
@@ -1483,9 +1578,9 @@
|
|
1483
1578
|
"type": "string",
|
1484
1579
|
"description": "The jurisdiction that the bucket exists in. Default if not present."
|
1485
1580
|
},
|
1486
|
-
"
|
1581
|
+
"remote": {
|
1487
1582
|
"type": "boolean",
|
1488
|
-
"description": "Whether the R2 bucket should be remote or not
|
1583
|
+
"description": "Whether the R2 bucket should be remote or not"
|
1489
1584
|
}
|
1490
1585
|
},
|
1491
1586
|
"required": [
|
@@ -1529,9 +1624,9 @@
|
|
1529
1624
|
"type": "string",
|
1530
1625
|
"description": "Internal use only."
|
1531
1626
|
},
|
1532
|
-
"
|
1627
|
+
"remote": {
|
1533
1628
|
"type": "boolean",
|
1534
|
-
"description": "Whether the D1 database should be remote or not
|
1629
|
+
"description": "Whether the D1 database should be remote or not"
|
1535
1630
|
}
|
1536
1631
|
},
|
1537
1632
|
"required": [
|
@@ -1555,9 +1650,9 @@
|
|
1555
1650
|
"type": "string",
|
1556
1651
|
"description": "The name of the index."
|
1557
1652
|
},
|
1558
|
-
"
|
1653
|
+
"remote": {
|
1559
1654
|
"type": "boolean",
|
1560
|
-
"description": "Whether the Vectorize index should be remote or not
|
1655
|
+
"description": "Whether the Vectorize index should be remote or not"
|
1561
1656
|
}
|
1562
1657
|
},
|
1563
1658
|
"required": [
|
@@ -1618,9 +1713,9 @@
|
|
1618
1713
|
"additionalProperties": {},
|
1619
1714
|
"description": "Optional properties that will be made available to the service via ctx.props."
|
1620
1715
|
},
|
1621
|
-
"
|
1716
|
+
"remote": {
|
1622
1717
|
"type": "boolean",
|
1623
|
-
"description": "Whether the service binding should be remote or not
|
1718
|
+
"description": "Whether the service binding should be remote or not"
|
1624
1719
|
}
|
1625
1720
|
},
|
1626
1721
|
"required": [
|
@@ -1660,9 +1755,9 @@
|
|
1660
1755
|
"binding": {
|
1661
1756
|
"type": "string"
|
1662
1757
|
},
|
1663
|
-
"
|
1758
|
+
"remote": {
|
1664
1759
|
"type": "boolean",
|
1665
|
-
"description": "Whether the Browser binding should be remote or not
|
1760
|
+
"description": "Whether the Browser binding should be remote or not"
|
1666
1761
|
}
|
1667
1762
|
},
|
1668
1763
|
"required": [
|
@@ -1681,9 +1776,9 @@
|
|
1681
1776
|
"staging": {
|
1682
1777
|
"type": "boolean"
|
1683
1778
|
},
|
1684
|
-
"
|
1779
|
+
"remote": {
|
1685
1780
|
"type": "boolean",
|
1686
|
-
"description": "Whether the AI binding should be remote or not
|
1781
|
+
"description": "Whether the AI binding should be remote or not"
|
1687
1782
|
}
|
1688
1783
|
},
|
1689
1784
|
"required": [
|
@@ -1699,9 +1794,9 @@
|
|
1699
1794
|
"binding": {
|
1700
1795
|
"type": "string"
|
1701
1796
|
},
|
1702
|
-
"
|
1797
|
+
"remote": {
|
1703
1798
|
"type": "boolean",
|
1704
|
-
"description": "Whether the Images binding should be remote or not
|
1799
|
+
"description": "Whether the Images binding should be remote or not"
|
1705
1800
|
}
|
1706
1801
|
},
|
1707
1802
|
"required": [
|
@@ -1733,10 +1828,50 @@
|
|
1733
1828
|
"type": "object",
|
1734
1829
|
"properties": {
|
1735
1830
|
"name": {
|
1736
|
-
"type": "string"
|
1831
|
+
"type": "string",
|
1832
|
+
"description": "The name of the binding provided to the Worker"
|
1737
1833
|
},
|
1738
1834
|
"type": {
|
1739
|
-
"type": "string"
|
1835
|
+
"type": "string",
|
1836
|
+
"description": "The 'type' of the unsafe binding."
|
1837
|
+
},
|
1838
|
+
"dev": {
|
1839
|
+
"type": "object",
|
1840
|
+
"properties": {
|
1841
|
+
"plugin": {
|
1842
|
+
"type": "object",
|
1843
|
+
"properties": {
|
1844
|
+
"package": {
|
1845
|
+
"type": "string",
|
1846
|
+
"description": "Package is the bare specifier of the package that exposes plugins to integrate into Miniflare via a named `plugins` export.",
|
1847
|
+
"examples": [
|
1848
|
+
"@cloudflare/my-external-miniflare-plugin"
|
1849
|
+
]
|
1850
|
+
},
|
1851
|
+
"name": {
|
1852
|
+
"type": "string",
|
1853
|
+
"description": "Plugin is the name of the plugin exposed by the package.",
|
1854
|
+
"examples": [
|
1855
|
+
"MY_UNSAFE_PLUGIN"
|
1856
|
+
]
|
1857
|
+
}
|
1858
|
+
},
|
1859
|
+
"required": [
|
1860
|
+
"package",
|
1861
|
+
"name"
|
1862
|
+
],
|
1863
|
+
"additionalProperties": false
|
1864
|
+
},
|
1865
|
+
"options": {
|
1866
|
+
"type": "object",
|
1867
|
+
"additionalProperties": {},
|
1868
|
+
"description": "Optional mapping of unsafe bindings names to options provided for the plugin."
|
1869
|
+
}
|
1870
|
+
},
|
1871
|
+
"required": [
|
1872
|
+
"plugin"
|
1873
|
+
],
|
1874
|
+
"additionalProperties": false
|
1740
1875
|
}
|
1741
1876
|
},
|
1742
1877
|
"required": [
|
@@ -1806,9 +1941,9 @@
|
|
1806
1941
|
"type": "string",
|
1807
1942
|
"description": "The uuid of the uploaded mTLS certificate"
|
1808
1943
|
},
|
1809
|
-
"
|
1944
|
+
"remote": {
|
1810
1945
|
"type": "boolean",
|
1811
|
-
"description": "Whether the mtls fetcher should be remote or not
|
1946
|
+
"description": "Whether the mtls fetcher should be remote or not"
|
1812
1947
|
}
|
1813
1948
|
},
|
1814
1949
|
"required": [
|
@@ -1845,9 +1980,9 @@
|
|
1845
1980
|
"$ref": "#/definitions/DispatchNamespaceOutbound",
|
1846
1981
|
"description": "Details about the outbound Worker which will handle outbound requests from your namespace"
|
1847
1982
|
},
|
1848
|
-
"
|
1983
|
+
"remote": {
|
1849
1984
|
"type": "boolean",
|
1850
|
-
"description": "Whether the Dispatch Namespace should be remote or not
|
1985
|
+
"description": "Whether the Dispatch Namespace should be remote or not"
|
1851
1986
|
}
|
1852
1987
|
},
|
1853
1988
|
"required": [
|
@@ -1931,6 +2066,53 @@
|
|
1931
2066
|
},
|
1932
2067
|
"description": "**DO NOT USE**. Hello World Binding Config to serve as an explanatory example.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
1933
2068
|
"default": []
|
2069
|
+
},
|
2070
|
+
"ratelimits": {
|
2071
|
+
"type": "array",
|
2072
|
+
"items": {
|
2073
|
+
"type": "object",
|
2074
|
+
"properties": {
|
2075
|
+
"name": {
|
2076
|
+
"type": "string",
|
2077
|
+
"description": "The binding name used to refer to the rate limiter in the Worker."
|
2078
|
+
},
|
2079
|
+
"namespace_id": {
|
2080
|
+
"type": "string",
|
2081
|
+
"description": "The namespace ID for this rate limiter."
|
2082
|
+
},
|
2083
|
+
"simple": {
|
2084
|
+
"type": "object",
|
2085
|
+
"properties": {
|
2086
|
+
"limit": {
|
2087
|
+
"type": "number",
|
2088
|
+
"description": "The maximum number of requests allowed in the time period."
|
2089
|
+
},
|
2090
|
+
"period": {
|
2091
|
+
"type": "number",
|
2092
|
+
"enum": [
|
2093
|
+
10,
|
2094
|
+
60
|
2095
|
+
],
|
2096
|
+
"description": "The time period in seconds (10 for ten seconds, 60 for one minute)."
|
2097
|
+
}
|
2098
|
+
},
|
2099
|
+
"required": [
|
2100
|
+
"limit",
|
2101
|
+
"period"
|
2102
|
+
],
|
2103
|
+
"additionalProperties": false,
|
2104
|
+
"description": "Simple rate limiting configuration."
|
2105
|
+
}
|
2106
|
+
},
|
2107
|
+
"required": [
|
2108
|
+
"name",
|
2109
|
+
"namespace_id",
|
2110
|
+
"simple"
|
2111
|
+
],
|
2112
|
+
"additionalProperties": false
|
2113
|
+
},
|
2114
|
+
"description": "Specifies rate limit bindings that are bound to this Worker environment.\n\nNOTE: This field is not automatically inherited from the top level environment, and so must be specified in every named environment.",
|
2115
|
+
"default": []
|
1934
2116
|
}
|
1935
2117
|
},
|
1936
2118
|
"additionalProperties": false,
|
@@ -2181,6 +2363,45 @@
|
|
2181
2363
|
"invocation_logs": {
|
2182
2364
|
"type": "boolean",
|
2183
2365
|
"description": "Set to false to disable invocation logs"
|
2366
|
+
},
|
2367
|
+
"persist": {
|
2368
|
+
"type": "boolean",
|
2369
|
+
"description": "If logs should be persisted to the Cloudflare observability platform where they can be queried in the dashboard.",
|
2370
|
+
"default": true
|
2371
|
+
},
|
2372
|
+
"destinations": {
|
2373
|
+
"type": "array",
|
2374
|
+
"items": {
|
2375
|
+
"type": "string"
|
2376
|
+
},
|
2377
|
+
"description": "What destinations logs emitted from the Worker should be sent to.",
|
2378
|
+
"default": []
|
2379
|
+
}
|
2380
|
+
},
|
2381
|
+
"additionalProperties": false
|
2382
|
+
},
|
2383
|
+
"traces": {
|
2384
|
+
"type": "object",
|
2385
|
+
"properties": {
|
2386
|
+
"enabled": {
|
2387
|
+
"type": "boolean"
|
2388
|
+
},
|
2389
|
+
"head_sampling_rate": {
|
2390
|
+
"type": "number",
|
2391
|
+
"description": "The sampling rate"
|
2392
|
+
},
|
2393
|
+
"persist": {
|
2394
|
+
"type": "boolean",
|
2395
|
+
"description": "If traces should be persisted to the Cloudflare observability platform where they can be queried in the dashboard.",
|
2396
|
+
"default": true
|
2397
|
+
},
|
2398
|
+
"destinations": {
|
2399
|
+
"type": "array",
|
2400
|
+
"items": {
|
2401
|
+
"type": "string"
|
2402
|
+
},
|
2403
|
+
"description": "What destinations traces emitted from the Worker should be sent to.",
|
2404
|
+
"default": []
|
2184
2405
|
}
|
2185
2406
|
},
|
2186
2407
|
"additionalProperties": false
|
@@ -2266,9 +2487,9 @@
|
|
2266
2487
|
"type": "string",
|
2267
2488
|
"description": "The script where the Workflow is defined (if it's external to this Worker)"
|
2268
2489
|
},
|
2269
|
-
"
|
2490
|
+
"remote": {
|
2270
2491
|
"type": "boolean",
|
2271
|
-
"description": "Whether the Workflow should be remote or not
|
2492
|
+
"description": "Whether the Workflow should be remote or not"
|
2272
2493
|
}
|
2273
2494
|
},
|
2274
2495
|
"required": [
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "wrangler",
|
3
|
-
"version": "4.
|
3
|
+
"version": "4.36.0",
|
4
4
|
"description": "Command-line interface for all things Cloudflare Workers",
|
5
5
|
"keywords": [
|
6
6
|
"wrangler",
|
@@ -53,17 +53,17 @@
|
|
53
53
|
"blake3-wasm": "2.1.5",
|
54
54
|
"esbuild": "0.25.4",
|
55
55
|
"path-to-regexp": "6.3.0",
|
56
|
-
"unenv": "2.0.0-rc.
|
57
|
-
"workerd": "1.
|
56
|
+
"unenv": "2.0.0-rc.21",
|
57
|
+
"workerd": "1.20250906.0",
|
58
58
|
"@cloudflare/kv-asset-handler": "0.4.0",
|
59
|
-
"
|
60
|
-
"
|
59
|
+
"miniflare": "4.20250906.1",
|
60
|
+
"@cloudflare/unenv-preset": "2.7.3"
|
61
61
|
},
|
62
62
|
"devDependencies": {
|
63
63
|
"@aws-sdk/client-s3": "^3.721.0",
|
64
64
|
"@cloudflare/jsrpc": "link:../../vendor/jsrpc",
|
65
65
|
"@cloudflare/types": "6.18.4",
|
66
|
-
"@cloudflare/workers-types": "^4.
|
66
|
+
"@cloudflare/workers-types": "^4.20250906.0",
|
67
67
|
"@cspotcode/source-map-support": "0.8.1",
|
68
68
|
"@iarna/toml": "^3.0.0",
|
69
69
|
"@sentry/node": "^7.86.0",
|
@@ -89,6 +89,7 @@
|
|
89
89
|
"chalk": "^5.2.0",
|
90
90
|
"chokidar": "^4.0.1",
|
91
91
|
"cli-table3": "^0.6.3",
|
92
|
+
"cloudflare": "^4.5.0",
|
92
93
|
"cmd-shim": "^4.1.0",
|
93
94
|
"command-exists": "^1.2.9",
|
94
95
|
"concurrently": "^8.2.2",
|
@@ -129,7 +130,7 @@
|
|
129
130
|
"ts-json-schema-generator": "^1.5.0",
|
130
131
|
"tsup": "8.3.0",
|
131
132
|
"typescript": "^5.8.3",
|
132
|
-
"undici": "
|
133
|
+
"undici": "7.14.0",
|
133
134
|
"update-check": "^1.5.4",
|
134
135
|
"vitest": "~3.2.0",
|
135
136
|
"vitest-websocket-mock": "^0.4.0",
|
@@ -137,15 +138,15 @@
|
|
137
138
|
"xdg-app-paths": "^8.3.0",
|
138
139
|
"xxhash-wasm": "^1.0.1",
|
139
140
|
"yargs": "^17.7.2",
|
140
|
-
"@cloudflare/cli": "1.1.
|
141
|
+
"@cloudflare/cli": "1.1.2",
|
141
142
|
"@cloudflare/containers-shared": "0.2.10",
|
142
|
-
"@cloudflare/eslint-config-
|
143
|
-
"@cloudflare/pages-shared": "^0.13.
|
143
|
+
"@cloudflare/eslint-config-shared": "1.1.0",
|
144
|
+
"@cloudflare/pages-shared": "^0.13.70",
|
144
145
|
"@cloudflare/workers-shared": "0.18.8",
|
145
146
|
"@cloudflare/workers-tsconfig": "0.0.0"
|
146
147
|
},
|
147
148
|
"peerDependencies": {
|
148
|
-
"@cloudflare/workers-types": "^4.
|
149
|
+
"@cloudflare/workers-types": "^4.20250906.0"
|
149
150
|
},
|
150
151
|
"peerDependenciesMeta": {
|
151
152
|
"@cloudflare/workers-types": {
|