@sanity/cli 6.1.6 → 6.1.8
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/README.md +78 -78
- package/dist/actions/build/buildStudio.js +1 -1
- package/dist/actions/build/buildStudio.js.map +1 -1
- package/dist/actions/build/buildVendorDependencies.js +6 -3
- package/dist/actions/build/buildVendorDependencies.js.map +1 -1
- package/dist/actions/schema/getExtractOptions.js +1 -5
- package/dist/actions/schema/getExtractOptions.js.map +1 -1
- package/dist/services/mcp.js +32 -44
- package/dist/services/mcp.js.map +1 -1
- package/dist/util/getLocalPackageVersion.js +33 -20
- package/dist/util/getLocalPackageVersion.js.map +1 -1
- package/oclif.manifest.json +233 -233
- package/package.json +21 -21
package/oclif.manifest.json
CHANGED
|
@@ -953,6 +953,160 @@
|
|
|
953
953
|
"versions.js"
|
|
954
954
|
]
|
|
955
955
|
},
|
|
956
|
+
"cors:add": {
|
|
957
|
+
"aliases": [],
|
|
958
|
+
"args": {
|
|
959
|
+
"origin": {
|
|
960
|
+
"description": "Origin to allow (e.g., https://example.com)",
|
|
961
|
+
"name": "origin",
|
|
962
|
+
"required": true
|
|
963
|
+
}
|
|
964
|
+
},
|
|
965
|
+
"description": "Allow a new origin to use your project API through CORS",
|
|
966
|
+
"examples": [
|
|
967
|
+
{
|
|
968
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
969
|
+
"description": "Interactively add a CORS origin"
|
|
970
|
+
},
|
|
971
|
+
{
|
|
972
|
+
"command": "<%= config.bin %> <%= command.id %> http://localhost:3000 --no-credentials",
|
|
973
|
+
"description": "Add a localhost origin without credentials"
|
|
974
|
+
},
|
|
975
|
+
{
|
|
976
|
+
"command": "<%= config.bin %> <%= command.id %> https://myapp.com --credentials",
|
|
977
|
+
"description": "Add a production origin with credentials allowed"
|
|
978
|
+
},
|
|
979
|
+
{
|
|
980
|
+
"command": "<%= config.bin %> <%= command.id %> https://myapp.com --project-id abc123",
|
|
981
|
+
"description": "Add a CORS origin for a specific project"
|
|
982
|
+
}
|
|
983
|
+
],
|
|
984
|
+
"flags": {
|
|
985
|
+
"project-id": {
|
|
986
|
+
"char": "p",
|
|
987
|
+
"description": "Project ID to add CORS origin to (overrides CLI configuration)",
|
|
988
|
+
"helpGroup": "OVERRIDE",
|
|
989
|
+
"name": "project-id",
|
|
990
|
+
"hasDynamicHelp": false,
|
|
991
|
+
"helpValue": "<id>",
|
|
992
|
+
"multiple": false,
|
|
993
|
+
"type": "option"
|
|
994
|
+
},
|
|
995
|
+
"credentials": {
|
|
996
|
+
"description": "Allow credentials (token/cookie) to be sent from this origin",
|
|
997
|
+
"name": "credentials",
|
|
998
|
+
"required": false,
|
|
999
|
+
"allowNo": true,
|
|
1000
|
+
"type": "boolean"
|
|
1001
|
+
}
|
|
1002
|
+
},
|
|
1003
|
+
"hasDynamicHelp": false,
|
|
1004
|
+
"hiddenAliases": [],
|
|
1005
|
+
"id": "cors:add",
|
|
1006
|
+
"pluginAlias": "@sanity/cli",
|
|
1007
|
+
"pluginName": "@sanity/cli",
|
|
1008
|
+
"pluginType": "core",
|
|
1009
|
+
"strict": true,
|
|
1010
|
+
"isESM": true,
|
|
1011
|
+
"relativePath": [
|
|
1012
|
+
"dist",
|
|
1013
|
+
"commands",
|
|
1014
|
+
"cors",
|
|
1015
|
+
"add.js"
|
|
1016
|
+
]
|
|
1017
|
+
},
|
|
1018
|
+
"cors:delete": {
|
|
1019
|
+
"aliases": [],
|
|
1020
|
+
"args": {
|
|
1021
|
+
"origin": {
|
|
1022
|
+
"description": "Origin to delete (will prompt if not provided)",
|
|
1023
|
+
"name": "origin",
|
|
1024
|
+
"required": false
|
|
1025
|
+
}
|
|
1026
|
+
},
|
|
1027
|
+
"description": "Delete an existing CORS origin from your project",
|
|
1028
|
+
"examples": [
|
|
1029
|
+
{
|
|
1030
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
1031
|
+
"description": "Interactively select and delete a CORS origin"
|
|
1032
|
+
},
|
|
1033
|
+
{
|
|
1034
|
+
"command": "<%= config.bin %> <%= command.id %> https://example.com",
|
|
1035
|
+
"description": "Delete a specific CORS origin"
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"command": "<%= config.bin %> <%= command.id %> --project-id abc123",
|
|
1039
|
+
"description": "Delete a CORS origin from a specific project"
|
|
1040
|
+
}
|
|
1041
|
+
],
|
|
1042
|
+
"flags": {
|
|
1043
|
+
"project-id": {
|
|
1044
|
+
"char": "p",
|
|
1045
|
+
"description": "Project ID to delete CORS origin from (overrides CLI configuration)",
|
|
1046
|
+
"helpGroup": "OVERRIDE",
|
|
1047
|
+
"name": "project-id",
|
|
1048
|
+
"hasDynamicHelp": false,
|
|
1049
|
+
"helpValue": "<id>",
|
|
1050
|
+
"multiple": false,
|
|
1051
|
+
"type": "option"
|
|
1052
|
+
}
|
|
1053
|
+
},
|
|
1054
|
+
"hasDynamicHelp": false,
|
|
1055
|
+
"hiddenAliases": [],
|
|
1056
|
+
"id": "cors:delete",
|
|
1057
|
+
"pluginAlias": "@sanity/cli",
|
|
1058
|
+
"pluginName": "@sanity/cli",
|
|
1059
|
+
"pluginType": "core",
|
|
1060
|
+
"strict": true,
|
|
1061
|
+
"isESM": true,
|
|
1062
|
+
"relativePath": [
|
|
1063
|
+
"dist",
|
|
1064
|
+
"commands",
|
|
1065
|
+
"cors",
|
|
1066
|
+
"delete.js"
|
|
1067
|
+
]
|
|
1068
|
+
},
|
|
1069
|
+
"cors:list": {
|
|
1070
|
+
"aliases": [],
|
|
1071
|
+
"args": {},
|
|
1072
|
+
"description": "List all origins allowed to access the API for this project",
|
|
1073
|
+
"examples": [
|
|
1074
|
+
{
|
|
1075
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
1076
|
+
"description": "List CORS origins for the current project"
|
|
1077
|
+
},
|
|
1078
|
+
{
|
|
1079
|
+
"command": "<%= config.bin %> <%= command.id %> --project-id abc123",
|
|
1080
|
+
"description": "List CORS origins for a specific project"
|
|
1081
|
+
}
|
|
1082
|
+
],
|
|
1083
|
+
"flags": {
|
|
1084
|
+
"project-id": {
|
|
1085
|
+
"char": "p",
|
|
1086
|
+
"description": "Project ID to list CORS origins for (overrides CLI configuration)",
|
|
1087
|
+
"helpGroup": "OVERRIDE",
|
|
1088
|
+
"name": "project-id",
|
|
1089
|
+
"hasDynamicHelp": false,
|
|
1090
|
+
"helpValue": "<id>",
|
|
1091
|
+
"multiple": false,
|
|
1092
|
+
"type": "option"
|
|
1093
|
+
}
|
|
1094
|
+
},
|
|
1095
|
+
"hasDynamicHelp": false,
|
|
1096
|
+
"hiddenAliases": [],
|
|
1097
|
+
"id": "cors:list",
|
|
1098
|
+
"pluginAlias": "@sanity/cli",
|
|
1099
|
+
"pluginName": "@sanity/cli",
|
|
1100
|
+
"pluginType": "core",
|
|
1101
|
+
"strict": true,
|
|
1102
|
+
"isESM": true,
|
|
1103
|
+
"relativePath": [
|
|
1104
|
+
"dist",
|
|
1105
|
+
"commands",
|
|
1106
|
+
"cors",
|
|
1107
|
+
"list.js"
|
|
1108
|
+
]
|
|
1109
|
+
},
|
|
956
1110
|
"backup:disable": {
|
|
957
1111
|
"aliases": [],
|
|
958
1112
|
"args": {
|
|
@@ -1208,160 +1362,6 @@
|
|
|
1208
1362
|
"list.js"
|
|
1209
1363
|
]
|
|
1210
1364
|
},
|
|
1211
|
-
"cors:add": {
|
|
1212
|
-
"aliases": [],
|
|
1213
|
-
"args": {
|
|
1214
|
-
"origin": {
|
|
1215
|
-
"description": "Origin to allow (e.g., https://example.com)",
|
|
1216
|
-
"name": "origin",
|
|
1217
|
-
"required": true
|
|
1218
|
-
}
|
|
1219
|
-
},
|
|
1220
|
-
"description": "Allow a new origin to use your project API through CORS",
|
|
1221
|
-
"examples": [
|
|
1222
|
-
{
|
|
1223
|
-
"command": "<%= config.bin %> <%= command.id %>",
|
|
1224
|
-
"description": "Interactively add a CORS origin"
|
|
1225
|
-
},
|
|
1226
|
-
{
|
|
1227
|
-
"command": "<%= config.bin %> <%= command.id %> http://localhost:3000 --no-credentials",
|
|
1228
|
-
"description": "Add a localhost origin without credentials"
|
|
1229
|
-
},
|
|
1230
|
-
{
|
|
1231
|
-
"command": "<%= config.bin %> <%= command.id %> https://myapp.com --credentials",
|
|
1232
|
-
"description": "Add a production origin with credentials allowed"
|
|
1233
|
-
},
|
|
1234
|
-
{
|
|
1235
|
-
"command": "<%= config.bin %> <%= command.id %> https://myapp.com --project-id abc123",
|
|
1236
|
-
"description": "Add a CORS origin for a specific project"
|
|
1237
|
-
}
|
|
1238
|
-
],
|
|
1239
|
-
"flags": {
|
|
1240
|
-
"project-id": {
|
|
1241
|
-
"char": "p",
|
|
1242
|
-
"description": "Project ID to add CORS origin to (overrides CLI configuration)",
|
|
1243
|
-
"helpGroup": "OVERRIDE",
|
|
1244
|
-
"name": "project-id",
|
|
1245
|
-
"hasDynamicHelp": false,
|
|
1246
|
-
"helpValue": "<id>",
|
|
1247
|
-
"multiple": false,
|
|
1248
|
-
"type": "option"
|
|
1249
|
-
},
|
|
1250
|
-
"credentials": {
|
|
1251
|
-
"description": "Allow credentials (token/cookie) to be sent from this origin",
|
|
1252
|
-
"name": "credentials",
|
|
1253
|
-
"required": false,
|
|
1254
|
-
"allowNo": true,
|
|
1255
|
-
"type": "boolean"
|
|
1256
|
-
}
|
|
1257
|
-
},
|
|
1258
|
-
"hasDynamicHelp": false,
|
|
1259
|
-
"hiddenAliases": [],
|
|
1260
|
-
"id": "cors:add",
|
|
1261
|
-
"pluginAlias": "@sanity/cli",
|
|
1262
|
-
"pluginName": "@sanity/cli",
|
|
1263
|
-
"pluginType": "core",
|
|
1264
|
-
"strict": true,
|
|
1265
|
-
"isESM": true,
|
|
1266
|
-
"relativePath": [
|
|
1267
|
-
"dist",
|
|
1268
|
-
"commands",
|
|
1269
|
-
"cors",
|
|
1270
|
-
"add.js"
|
|
1271
|
-
]
|
|
1272
|
-
},
|
|
1273
|
-
"cors:delete": {
|
|
1274
|
-
"aliases": [],
|
|
1275
|
-
"args": {
|
|
1276
|
-
"origin": {
|
|
1277
|
-
"description": "Origin to delete (will prompt if not provided)",
|
|
1278
|
-
"name": "origin",
|
|
1279
|
-
"required": false
|
|
1280
|
-
}
|
|
1281
|
-
},
|
|
1282
|
-
"description": "Delete an existing CORS origin from your project",
|
|
1283
|
-
"examples": [
|
|
1284
|
-
{
|
|
1285
|
-
"command": "<%= config.bin %> <%= command.id %>",
|
|
1286
|
-
"description": "Interactively select and delete a CORS origin"
|
|
1287
|
-
},
|
|
1288
|
-
{
|
|
1289
|
-
"command": "<%= config.bin %> <%= command.id %> https://example.com",
|
|
1290
|
-
"description": "Delete a specific CORS origin"
|
|
1291
|
-
},
|
|
1292
|
-
{
|
|
1293
|
-
"command": "<%= config.bin %> <%= command.id %> --project-id abc123",
|
|
1294
|
-
"description": "Delete a CORS origin from a specific project"
|
|
1295
|
-
}
|
|
1296
|
-
],
|
|
1297
|
-
"flags": {
|
|
1298
|
-
"project-id": {
|
|
1299
|
-
"char": "p",
|
|
1300
|
-
"description": "Project ID to delete CORS origin from (overrides CLI configuration)",
|
|
1301
|
-
"helpGroup": "OVERRIDE",
|
|
1302
|
-
"name": "project-id",
|
|
1303
|
-
"hasDynamicHelp": false,
|
|
1304
|
-
"helpValue": "<id>",
|
|
1305
|
-
"multiple": false,
|
|
1306
|
-
"type": "option"
|
|
1307
|
-
}
|
|
1308
|
-
},
|
|
1309
|
-
"hasDynamicHelp": false,
|
|
1310
|
-
"hiddenAliases": [],
|
|
1311
|
-
"id": "cors:delete",
|
|
1312
|
-
"pluginAlias": "@sanity/cli",
|
|
1313
|
-
"pluginName": "@sanity/cli",
|
|
1314
|
-
"pluginType": "core",
|
|
1315
|
-
"strict": true,
|
|
1316
|
-
"isESM": true,
|
|
1317
|
-
"relativePath": [
|
|
1318
|
-
"dist",
|
|
1319
|
-
"commands",
|
|
1320
|
-
"cors",
|
|
1321
|
-
"delete.js"
|
|
1322
|
-
]
|
|
1323
|
-
},
|
|
1324
|
-
"cors:list": {
|
|
1325
|
-
"aliases": [],
|
|
1326
|
-
"args": {},
|
|
1327
|
-
"description": "List all origins allowed to access the API for this project",
|
|
1328
|
-
"examples": [
|
|
1329
|
-
{
|
|
1330
|
-
"command": "<%= config.bin %> <%= command.id %>",
|
|
1331
|
-
"description": "List CORS origins for the current project"
|
|
1332
|
-
},
|
|
1333
|
-
{
|
|
1334
|
-
"command": "<%= config.bin %> <%= command.id %> --project-id abc123",
|
|
1335
|
-
"description": "List CORS origins for a specific project"
|
|
1336
|
-
}
|
|
1337
|
-
],
|
|
1338
|
-
"flags": {
|
|
1339
|
-
"project-id": {
|
|
1340
|
-
"char": "p",
|
|
1341
|
-
"description": "Project ID to list CORS origins for (overrides CLI configuration)",
|
|
1342
|
-
"helpGroup": "OVERRIDE",
|
|
1343
|
-
"name": "project-id",
|
|
1344
|
-
"hasDynamicHelp": false,
|
|
1345
|
-
"helpValue": "<id>",
|
|
1346
|
-
"multiple": false,
|
|
1347
|
-
"type": "option"
|
|
1348
|
-
}
|
|
1349
|
-
},
|
|
1350
|
-
"hasDynamicHelp": false,
|
|
1351
|
-
"hiddenAliases": [],
|
|
1352
|
-
"id": "cors:list",
|
|
1353
|
-
"pluginAlias": "@sanity/cli",
|
|
1354
|
-
"pluginName": "@sanity/cli",
|
|
1355
|
-
"pluginType": "core",
|
|
1356
|
-
"strict": true,
|
|
1357
|
-
"isESM": true,
|
|
1358
|
-
"relativePath": [
|
|
1359
|
-
"dist",
|
|
1360
|
-
"commands",
|
|
1361
|
-
"cors",
|
|
1362
|
-
"list.js"
|
|
1363
|
-
]
|
|
1364
|
-
},
|
|
1365
1365
|
"dataset:copy": {
|
|
1366
1366
|
"aliases": [],
|
|
1367
1367
|
"args": {
|
|
@@ -3628,6 +3628,84 @@
|
|
|
3628
3628
|
"list.js"
|
|
3629
3629
|
]
|
|
3630
3630
|
},
|
|
3631
|
+
"telemetry:disable": {
|
|
3632
|
+
"aliases": [],
|
|
3633
|
+
"args": {},
|
|
3634
|
+
"description": "Disable telemetry for your logged in user",
|
|
3635
|
+
"examples": [
|
|
3636
|
+
{
|
|
3637
|
+
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
3638
|
+
"description": "Disable telemetry for your logged in user"
|
|
3639
|
+
}
|
|
3640
|
+
],
|
|
3641
|
+
"flags": {},
|
|
3642
|
+
"hasDynamicHelp": false,
|
|
3643
|
+
"hiddenAliases": [],
|
|
3644
|
+
"id": "telemetry:disable",
|
|
3645
|
+
"pluginAlias": "@sanity/cli",
|
|
3646
|
+
"pluginName": "@sanity/cli",
|
|
3647
|
+
"pluginType": "core",
|
|
3648
|
+
"strict": true,
|
|
3649
|
+
"isESM": true,
|
|
3650
|
+
"relativePath": [
|
|
3651
|
+
"dist",
|
|
3652
|
+
"commands",
|
|
3653
|
+
"telemetry",
|
|
3654
|
+
"disable.js"
|
|
3655
|
+
]
|
|
3656
|
+
},
|
|
3657
|
+
"telemetry:enable": {
|
|
3658
|
+
"aliases": [],
|
|
3659
|
+
"args": {},
|
|
3660
|
+
"description": "Enable telemetry for your logged in user",
|
|
3661
|
+
"examples": [
|
|
3662
|
+
{
|
|
3663
|
+
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
3664
|
+
"description": "Enable telemetry for your logged in user"
|
|
3665
|
+
}
|
|
3666
|
+
],
|
|
3667
|
+
"flags": {},
|
|
3668
|
+
"hasDynamicHelp": false,
|
|
3669
|
+
"hiddenAliases": [],
|
|
3670
|
+
"id": "telemetry:enable",
|
|
3671
|
+
"pluginAlias": "@sanity/cli",
|
|
3672
|
+
"pluginName": "@sanity/cli",
|
|
3673
|
+
"pluginType": "core",
|
|
3674
|
+
"strict": true,
|
|
3675
|
+
"isESM": true,
|
|
3676
|
+
"relativePath": [
|
|
3677
|
+
"dist",
|
|
3678
|
+
"commands",
|
|
3679
|
+
"telemetry",
|
|
3680
|
+
"enable.js"
|
|
3681
|
+
]
|
|
3682
|
+
},
|
|
3683
|
+
"telemetry:status": {
|
|
3684
|
+
"aliases": [],
|
|
3685
|
+
"args": {},
|
|
3686
|
+
"description": "Check telemetry consent status for your logged in user",
|
|
3687
|
+
"examples": [
|
|
3688
|
+
{
|
|
3689
|
+
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
3690
|
+
"description": "Check telemetry consent status for your logged in user"
|
|
3691
|
+
}
|
|
3692
|
+
],
|
|
3693
|
+
"flags": {},
|
|
3694
|
+
"hasDynamicHelp": false,
|
|
3695
|
+
"hiddenAliases": [],
|
|
3696
|
+
"id": "telemetry:status",
|
|
3697
|
+
"pluginAlias": "@sanity/cli",
|
|
3698
|
+
"pluginName": "@sanity/cli",
|
|
3699
|
+
"pluginType": "core",
|
|
3700
|
+
"strict": true,
|
|
3701
|
+
"isESM": true,
|
|
3702
|
+
"relativePath": [
|
|
3703
|
+
"dist",
|
|
3704
|
+
"commands",
|
|
3705
|
+
"telemetry",
|
|
3706
|
+
"status.js"
|
|
3707
|
+
]
|
|
3708
|
+
},
|
|
3631
3709
|
"schema:delete": {
|
|
3632
3710
|
"aliases": [],
|
|
3633
3711
|
"args": {},
|
|
@@ -4004,84 +4082,6 @@
|
|
|
4004
4082
|
"validate.js"
|
|
4005
4083
|
]
|
|
4006
4084
|
},
|
|
4007
|
-
"telemetry:disable": {
|
|
4008
|
-
"aliases": [],
|
|
4009
|
-
"args": {},
|
|
4010
|
-
"description": "Disable telemetry for your logged in user",
|
|
4011
|
-
"examples": [
|
|
4012
|
-
{
|
|
4013
|
-
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
4014
|
-
"description": "Disable telemetry for your logged in user"
|
|
4015
|
-
}
|
|
4016
|
-
],
|
|
4017
|
-
"flags": {},
|
|
4018
|
-
"hasDynamicHelp": false,
|
|
4019
|
-
"hiddenAliases": [],
|
|
4020
|
-
"id": "telemetry:disable",
|
|
4021
|
-
"pluginAlias": "@sanity/cli",
|
|
4022
|
-
"pluginName": "@sanity/cli",
|
|
4023
|
-
"pluginType": "core",
|
|
4024
|
-
"strict": true,
|
|
4025
|
-
"isESM": true,
|
|
4026
|
-
"relativePath": [
|
|
4027
|
-
"dist",
|
|
4028
|
-
"commands",
|
|
4029
|
-
"telemetry",
|
|
4030
|
-
"disable.js"
|
|
4031
|
-
]
|
|
4032
|
-
},
|
|
4033
|
-
"telemetry:enable": {
|
|
4034
|
-
"aliases": [],
|
|
4035
|
-
"args": {},
|
|
4036
|
-
"description": "Enable telemetry for your logged in user",
|
|
4037
|
-
"examples": [
|
|
4038
|
-
{
|
|
4039
|
-
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
4040
|
-
"description": "Enable telemetry for your logged in user"
|
|
4041
|
-
}
|
|
4042
|
-
],
|
|
4043
|
-
"flags": {},
|
|
4044
|
-
"hasDynamicHelp": false,
|
|
4045
|
-
"hiddenAliases": [],
|
|
4046
|
-
"id": "telemetry:enable",
|
|
4047
|
-
"pluginAlias": "@sanity/cli",
|
|
4048
|
-
"pluginName": "@sanity/cli",
|
|
4049
|
-
"pluginType": "core",
|
|
4050
|
-
"strict": true,
|
|
4051
|
-
"isESM": true,
|
|
4052
|
-
"relativePath": [
|
|
4053
|
-
"dist",
|
|
4054
|
-
"commands",
|
|
4055
|
-
"telemetry",
|
|
4056
|
-
"enable.js"
|
|
4057
|
-
]
|
|
4058
|
-
},
|
|
4059
|
-
"telemetry:status": {
|
|
4060
|
-
"aliases": [],
|
|
4061
|
-
"args": {},
|
|
4062
|
-
"description": "Check telemetry consent status for your logged in user",
|
|
4063
|
-
"examples": [
|
|
4064
|
-
{
|
|
4065
|
-
"command": "<%= config.bin %> telemetry <%= command.id %>",
|
|
4066
|
-
"description": "Check telemetry consent status for your logged in user"
|
|
4067
|
-
}
|
|
4068
|
-
],
|
|
4069
|
-
"flags": {},
|
|
4070
|
-
"hasDynamicHelp": false,
|
|
4071
|
-
"hiddenAliases": [],
|
|
4072
|
-
"id": "telemetry:status",
|
|
4073
|
-
"pluginAlias": "@sanity/cli",
|
|
4074
|
-
"pluginName": "@sanity/cli",
|
|
4075
|
-
"pluginType": "core",
|
|
4076
|
-
"strict": true,
|
|
4077
|
-
"isESM": true,
|
|
4078
|
-
"relativePath": [
|
|
4079
|
-
"dist",
|
|
4080
|
-
"commands",
|
|
4081
|
-
"telemetry",
|
|
4082
|
-
"status.js"
|
|
4083
|
-
]
|
|
4084
|
-
},
|
|
4085
4085
|
"tokens:add": {
|
|
4086
4086
|
"aliases": [],
|
|
4087
4087
|
"args": {
|
|
@@ -4943,5 +4943,5 @@
|
|
|
4943
4943
|
]
|
|
4944
4944
|
}
|
|
4945
4945
|
},
|
|
4946
|
-
"version": "6.1.
|
|
4946
|
+
"version": "6.1.8"
|
|
4947
4947
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/cli",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.8",
|
|
4
4
|
"description": "Sanity CLI tool for managing Sanity projects and organizations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"access": "public"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@oclif/core": "^4.
|
|
55
|
-
"@oclif/plugin-help": "^6.2.
|
|
56
|
-
"@oclif/plugin-not-found": "^3.2.
|
|
54
|
+
"@oclif/core": "^4.9.0",
|
|
55
|
+
"@oclif/plugin-help": "^6.2.38",
|
|
56
|
+
"@oclif/plugin-not-found": "^3.2.75",
|
|
57
57
|
"@sanity/client": "^7.17.0",
|
|
58
58
|
"@sanity/codegen": "^6.0.1",
|
|
59
59
|
"@sanity/descriptors": "^1.3.0",
|
|
@@ -62,20 +62,20 @@
|
|
|
62
62
|
"@sanity/id-utils": "^1.0.0",
|
|
63
63
|
"@sanity/import": "^5.0.1",
|
|
64
64
|
"@sanity/migrate": "^6.0.0",
|
|
65
|
-
"@sanity/runtime-cli": "^14.5.
|
|
66
|
-
"@sanity/schema": "^5.
|
|
65
|
+
"@sanity/runtime-cli": "^14.5.1",
|
|
66
|
+
"@sanity/schema": "^5.17.1",
|
|
67
67
|
"@sanity/telemetry": "^0.8.1",
|
|
68
|
-
"@sanity/template-validator": "^3.0.
|
|
69
|
-
"@sanity/types": "^5.
|
|
68
|
+
"@sanity/template-validator": "^3.0.1",
|
|
69
|
+
"@sanity/types": "^5.17.1",
|
|
70
70
|
"@sanity/ui": "^3.1.14",
|
|
71
71
|
"@sanity/worker-channels": "^2.0.0",
|
|
72
|
-
"@vercel/frameworks": "3.
|
|
72
|
+
"@vercel/frameworks": "3.21.1",
|
|
73
73
|
"@vitejs/plugin-react": "^5.2.0",
|
|
74
74
|
"chokidar": "^5.0.0",
|
|
75
75
|
"console-table-printer": "^2.15.0",
|
|
76
76
|
"date-fns": "^4.1.0",
|
|
77
77
|
"debug": "^4.4.3",
|
|
78
|
-
"dotenv": "^17.
|
|
78
|
+
"dotenv": "^17.3.1",
|
|
79
79
|
"eventsource": "^4.1.0",
|
|
80
80
|
"execa": "^9.6.0",
|
|
81
81
|
"form-data": "^4.0.5",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"jsonc-parser": "^3.3.1",
|
|
89
89
|
"lodash-es": "^4.17.23",
|
|
90
90
|
"minimist": "^1.2.8",
|
|
91
|
-
"nanoid": "^5.1.
|
|
91
|
+
"nanoid": "^5.1.6",
|
|
92
92
|
"node-html-parser": "^7.0.1",
|
|
93
93
|
"oneline": "^2.0.0",
|
|
94
94
|
"open": "^11.0.0",
|
|
@@ -108,9 +108,9 @@
|
|
|
108
108
|
"rxjs": "^7.8.2",
|
|
109
109
|
"semver": "^7.7.4",
|
|
110
110
|
"smol-toml": "^1.6.0",
|
|
111
|
-
"tar": "^7.5.
|
|
112
|
-
"tar-fs": "^3.1.
|
|
113
|
-
"tar-stream": "^3.1.
|
|
111
|
+
"tar": "^7.5.11",
|
|
112
|
+
"tar-fs": "^3.1.2",
|
|
113
|
+
"tar-stream": "^3.1.8",
|
|
114
114
|
"tinyglobby": "^0.2.15",
|
|
115
115
|
"tsx": "^4.21.0",
|
|
116
116
|
"typeid-js": "^1.2.0",
|
|
@@ -118,11 +118,11 @@
|
|
|
118
118
|
"which": "^6.0.1",
|
|
119
119
|
"yaml": "^2.8.2",
|
|
120
120
|
"zod": "^4.3.6",
|
|
121
|
-
"@sanity/cli-core": "1.1.
|
|
121
|
+
"@sanity/cli-core": "1.1.3"
|
|
122
122
|
},
|
|
123
123
|
"devDependencies": {
|
|
124
124
|
"@eslint/compat": "^2.0.3",
|
|
125
|
-
"@sanity/pkg-utils": "^10.4.
|
|
125
|
+
"@sanity/pkg-utils": "^10.4.11",
|
|
126
126
|
"@swc/cli": "^0.8.0",
|
|
127
127
|
"@swc/core": "^1.15.18",
|
|
128
128
|
"@types/debug": "^4.1.12",
|
|
@@ -142,17 +142,17 @@
|
|
|
142
142
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
143
143
|
"eslint": "^9.39.4",
|
|
144
144
|
"nock": "^14.0.11",
|
|
145
|
-
"oclif": "^4.22.
|
|
145
|
+
"oclif": "^4.22.88",
|
|
146
146
|
"publint": "^0.3.18",
|
|
147
147
|
"rimraf": "^6.0.1",
|
|
148
|
-
"sanity": "^5.
|
|
148
|
+
"sanity": "^5.17.1",
|
|
149
149
|
"typescript": "^5.9.3",
|
|
150
150
|
"vite-tsconfig-paths": "^6.1.1",
|
|
151
151
|
"vitest": "^4.1.0",
|
|
152
|
-
"@repo/tsconfig": "3.70.0",
|
|
153
152
|
"@repo/package.config": "0.0.1",
|
|
154
|
-
"@
|
|
155
|
-
"@sanity/cli-test": "0.2.
|
|
153
|
+
"@repo/tsconfig": "3.70.0",
|
|
154
|
+
"@sanity/cli-test": "0.2.5",
|
|
155
|
+
"@sanity/eslint-config-cli": "1.0.1"
|
|
156
156
|
},
|
|
157
157
|
"engines": {
|
|
158
158
|
"node": ">=20.19.1 <22 || >=22.12"
|