@sanity/cli 7.9.0 → 7.10.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/README.md +132 -0
- package/dist/actions/auth/login/getProvider.js +7 -2
- package/dist/actions/auth/login/getProvider.js.map +1 -1
- package/dist/actions/dataset/create.js +2 -2
- package/dist/actions/dataset/create.js.map +1 -1
- package/dist/actions/deploy/createUserApplication.js +8 -5
- package/dist/actions/deploy/createUserApplication.js.map +1 -1
- package/dist/actions/deploy/deployApp.js +30 -12
- package/dist/actions/deploy/deployApp.js.map +1 -1
- package/dist/actions/manifest/extractCoreAppManifest.js +6 -1
- package/dist/actions/manifest/extractCoreAppManifest.js.map +1 -1
- package/dist/actions/organizations/getOrganization.js +7 -3
- package/dist/actions/organizations/getOrganization.js.map +1 -1
- package/dist/actions/organizations/validateOrganizationSlug.js +20 -0
- package/dist/actions/organizations/validateOrganizationSlug.js.map +1 -0
- package/dist/commands/hooks/create.js +4 -0
- package/dist/commands/hooks/create.js.map +1 -1
- package/dist/commands/hooks/delete.js +5 -0
- package/dist/commands/hooks/delete.js.map +1 -1
- package/dist/commands/hooks/logs.js +5 -0
- package/dist/commands/hooks/logs.js.map +1 -1
- package/dist/commands/install.js +1 -1
- package/dist/commands/install.js.map +1 -1
- package/dist/commands/organizations/create.js +79 -0
- package/dist/commands/organizations/create.js.map +1 -0
- package/dist/commands/organizations/delete.js +100 -0
- package/dist/commands/organizations/delete.js.map +1 -0
- package/dist/commands/organizations/get.js +48 -0
- package/dist/commands/organizations/get.js.map +1 -0
- package/dist/commands/organizations/list.js +60 -0
- package/dist/commands/organizations/list.js.map +1 -0
- package/dist/commands/organizations/update.js +115 -0
- package/dist/commands/organizations/update.js.map +1 -0
- package/dist/commands/projects/create.js +2 -1
- package/dist/commands/projects/create.js.map +1 -1
- package/dist/prompts/promptForOrganizationName.js +2 -1
- package/dist/prompts/promptForOrganizationName.js.map +1 -1
- package/dist/services/organizations.js +45 -2
- package/dist/services/organizations.js.map +1 -1
- package/dist/services/userApplications.js.map +1 -1
- package/dist/topicAliases.js +7 -0
- package/dist/topicAliases.js.map +1 -1
- package/dist/util/organizationAliases.js +12 -0
- package/dist/util/organizationAliases.js.map +1 -0
- package/oclif.config.js +1 -0
- package/oclif.manifest.json +305 -57
- package/package.json +26 -26
package/oclif.manifest.json
CHANGED
|
@@ -3281,6 +3281,118 @@
|
|
|
3281
3281
|
"configure.js"
|
|
3282
3282
|
]
|
|
3283
3283
|
},
|
|
3284
|
+
"openapi:get": {
|
|
3285
|
+
"aliases": [],
|
|
3286
|
+
"args": {
|
|
3287
|
+
"slug": {
|
|
3288
|
+
"description": "Slug of the OpenAPI specification to retrieve",
|
|
3289
|
+
"name": "slug",
|
|
3290
|
+
"required": true
|
|
3291
|
+
}
|
|
3292
|
+
},
|
|
3293
|
+
"description": "Get an OpenAPI specification by slug",
|
|
3294
|
+
"examples": [
|
|
3295
|
+
{
|
|
3296
|
+
"command": "<%= config.bin %> <%= command.id %> query",
|
|
3297
|
+
"description": "Get a specification (YAML format, default)"
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"command": "<%= config.bin %> <%= command.id %> query --format=json",
|
|
3301
|
+
"description": "Get specification in JSON format"
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"command": "<%= config.bin %> <%= command.id %> query --web",
|
|
3305
|
+
"description": "Open specification in browser"
|
|
3306
|
+
},
|
|
3307
|
+
{
|
|
3308
|
+
"command": "<%= config.bin %> <%= command.id %> query > query-api.yaml",
|
|
3309
|
+
"description": "Pipe to file"
|
|
3310
|
+
}
|
|
3311
|
+
],
|
|
3312
|
+
"flags": {
|
|
3313
|
+
"format": {
|
|
3314
|
+
"description": "Output format: yaml (default), json",
|
|
3315
|
+
"name": "format",
|
|
3316
|
+
"default": "yaml",
|
|
3317
|
+
"hasDynamicHelp": false,
|
|
3318
|
+
"multiple": false,
|
|
3319
|
+
"options": [
|
|
3320
|
+
"yaml",
|
|
3321
|
+
"json"
|
|
3322
|
+
],
|
|
3323
|
+
"type": "option"
|
|
3324
|
+
},
|
|
3325
|
+
"web": {
|
|
3326
|
+
"char": "w",
|
|
3327
|
+
"description": "Open in web browser",
|
|
3328
|
+
"name": "web",
|
|
3329
|
+
"allowNo": false,
|
|
3330
|
+
"type": "boolean"
|
|
3331
|
+
}
|
|
3332
|
+
},
|
|
3333
|
+
"hasDynamicHelp": false,
|
|
3334
|
+
"hiddenAliases": [],
|
|
3335
|
+
"id": "openapi:get",
|
|
3336
|
+
"pluginAlias": "@sanity/cli",
|
|
3337
|
+
"pluginName": "@sanity/cli",
|
|
3338
|
+
"pluginType": "core",
|
|
3339
|
+
"strict": true,
|
|
3340
|
+
"isESM": true,
|
|
3341
|
+
"relativePath": [
|
|
3342
|
+
"dist",
|
|
3343
|
+
"commands",
|
|
3344
|
+
"openapi",
|
|
3345
|
+
"get.js"
|
|
3346
|
+
]
|
|
3347
|
+
},
|
|
3348
|
+
"openapi:list": {
|
|
3349
|
+
"aliases": [],
|
|
3350
|
+
"args": {},
|
|
3351
|
+
"description": "List all available OpenAPI specifications",
|
|
3352
|
+
"examples": [
|
|
3353
|
+
{
|
|
3354
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
3355
|
+
"description": "List all available OpenAPI specs"
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
"command": "<%= config.bin %> <%= command.id %> --json",
|
|
3359
|
+
"description": "List with JSON output"
|
|
3360
|
+
},
|
|
3361
|
+
{
|
|
3362
|
+
"command": "<%= config.bin %> <%= command.id %> --web",
|
|
3363
|
+
"description": "Open HTTP Reference in browser"
|
|
3364
|
+
}
|
|
3365
|
+
],
|
|
3366
|
+
"flags": {
|
|
3367
|
+
"json": {
|
|
3368
|
+
"description": "Output JSON",
|
|
3369
|
+
"name": "json",
|
|
3370
|
+
"allowNo": false,
|
|
3371
|
+
"type": "boolean"
|
|
3372
|
+
},
|
|
3373
|
+
"web": {
|
|
3374
|
+
"char": "w",
|
|
3375
|
+
"description": "Open HTTP Reference in web browser",
|
|
3376
|
+
"name": "web",
|
|
3377
|
+
"allowNo": false,
|
|
3378
|
+
"type": "boolean"
|
|
3379
|
+
}
|
|
3380
|
+
},
|
|
3381
|
+
"hasDynamicHelp": false,
|
|
3382
|
+
"hiddenAliases": [],
|
|
3383
|
+
"id": "openapi:list",
|
|
3384
|
+
"pluginAlias": "@sanity/cli",
|
|
3385
|
+
"pluginName": "@sanity/cli",
|
|
3386
|
+
"pluginType": "core",
|
|
3387
|
+
"strict": true,
|
|
3388
|
+
"isESM": true,
|
|
3389
|
+
"relativePath": [
|
|
3390
|
+
"dist",
|
|
3391
|
+
"commands",
|
|
3392
|
+
"openapi",
|
|
3393
|
+
"list.js"
|
|
3394
|
+
]
|
|
3395
|
+
},
|
|
3284
3396
|
"media:create-aspect": {
|
|
3285
3397
|
"aliases": [],
|
|
3286
3398
|
"args": {},
|
|
@@ -3571,58 +3683,101 @@
|
|
|
3571
3683
|
"import.js"
|
|
3572
3684
|
]
|
|
3573
3685
|
},
|
|
3574
|
-
"
|
|
3686
|
+
"organizations:create": {
|
|
3575
3687
|
"aliases": [],
|
|
3576
|
-
"args": {
|
|
3577
|
-
|
|
3578
|
-
"description": "Slug of the OpenAPI specification to retrieve",
|
|
3579
|
-
"name": "slug",
|
|
3580
|
-
"required": true
|
|
3581
|
-
}
|
|
3582
|
-
},
|
|
3583
|
-
"description": "Get an OpenAPI specification by slug",
|
|
3688
|
+
"args": {},
|
|
3689
|
+
"description": "Create a new organization",
|
|
3584
3690
|
"examples": [
|
|
3585
3691
|
{
|
|
3586
|
-
"command": "<%= config.bin %> <%= command.id %>
|
|
3587
|
-
"description": "
|
|
3588
|
-
},
|
|
3589
|
-
{
|
|
3590
|
-
"command": "<%= config.bin %> <%= command.id %> query --format=json",
|
|
3591
|
-
"description": "Get specification in JSON format"
|
|
3692
|
+
"command": "<%= config.bin %> <%= command.id %>",
|
|
3693
|
+
"description": "Interactively create an organization"
|
|
3592
3694
|
},
|
|
3593
3695
|
{
|
|
3594
|
-
"command": "<%= config.bin %> <%= command.id %>
|
|
3595
|
-
"description": "
|
|
3696
|
+
"command": "<%= config.bin %> <%= command.id %> --name \"Acme Corp\"",
|
|
3697
|
+
"description": "Create an organization named \"Acme Corp\""
|
|
3596
3698
|
},
|
|
3597
3699
|
{
|
|
3598
|
-
"command": "<%= config.bin %> <%= command.id %>
|
|
3599
|
-
"description": "
|
|
3700
|
+
"command": "<%= config.bin %> <%= command.id %> --name \"Acme Corp\" --default-role member",
|
|
3701
|
+
"description": "Create an organization with a default member role"
|
|
3600
3702
|
}
|
|
3601
3703
|
],
|
|
3602
3704
|
"flags": {
|
|
3603
|
-
"
|
|
3604
|
-
"description": "
|
|
3605
|
-
"name": "
|
|
3606
|
-
"
|
|
3705
|
+
"default-role": {
|
|
3706
|
+
"description": "Default role assigned to new members",
|
|
3707
|
+
"name": "default-role",
|
|
3708
|
+
"required": false,
|
|
3607
3709
|
"hasDynamicHelp": false,
|
|
3608
3710
|
"multiple": false,
|
|
3609
|
-
"options": [
|
|
3610
|
-
"yaml",
|
|
3611
|
-
"json"
|
|
3612
|
-
],
|
|
3613
3711
|
"type": "option"
|
|
3614
3712
|
},
|
|
3615
|
-
"
|
|
3616
|
-
"
|
|
3617
|
-
"
|
|
3618
|
-
"
|
|
3713
|
+
"name": {
|
|
3714
|
+
"description": "Organization name",
|
|
3715
|
+
"name": "name",
|
|
3716
|
+
"required": false,
|
|
3717
|
+
"hasDynamicHelp": false,
|
|
3718
|
+
"multiple": false,
|
|
3719
|
+
"type": "option"
|
|
3720
|
+
}
|
|
3721
|
+
},
|
|
3722
|
+
"hasDynamicHelp": false,
|
|
3723
|
+
"hiddenAliases": [
|
|
3724
|
+
"organization:create",
|
|
3725
|
+
"organisations:create",
|
|
3726
|
+
"organisation:create",
|
|
3727
|
+
"org:create",
|
|
3728
|
+
"orgs:create"
|
|
3729
|
+
],
|
|
3730
|
+
"id": "organizations:create",
|
|
3731
|
+
"pluginAlias": "@sanity/cli",
|
|
3732
|
+
"pluginName": "@sanity/cli",
|
|
3733
|
+
"pluginType": "core",
|
|
3734
|
+
"strict": true,
|
|
3735
|
+
"isESM": true,
|
|
3736
|
+
"relativePath": [
|
|
3737
|
+
"dist",
|
|
3738
|
+
"commands",
|
|
3739
|
+
"organizations",
|
|
3740
|
+
"create.js"
|
|
3741
|
+
]
|
|
3742
|
+
},
|
|
3743
|
+
"organizations:delete": {
|
|
3744
|
+
"aliases": [],
|
|
3745
|
+
"args": {
|
|
3746
|
+
"organizationId": {
|
|
3747
|
+
"description": "Organization ID to delete",
|
|
3748
|
+
"name": "organizationId",
|
|
3749
|
+
"required": true
|
|
3750
|
+
}
|
|
3751
|
+
},
|
|
3752
|
+
"description": "Delete an organization",
|
|
3753
|
+
"examples": [
|
|
3754
|
+
{
|
|
3755
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123",
|
|
3756
|
+
"description": "Delete an organization (prompts for confirmation)"
|
|
3757
|
+
},
|
|
3758
|
+
{
|
|
3759
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123 --force",
|
|
3760
|
+
"description": "Delete an organization without confirmation"
|
|
3761
|
+
}
|
|
3762
|
+
],
|
|
3763
|
+
"flags": {
|
|
3764
|
+
"force": {
|
|
3765
|
+
"description": "Do not prompt for delete confirmation - forcefully delete",
|
|
3766
|
+
"name": "force",
|
|
3767
|
+
"required": false,
|
|
3619
3768
|
"allowNo": false,
|
|
3620
3769
|
"type": "boolean"
|
|
3621
3770
|
}
|
|
3622
3771
|
},
|
|
3623
3772
|
"hasDynamicHelp": false,
|
|
3624
|
-
"hiddenAliases": [
|
|
3625
|
-
|
|
3773
|
+
"hiddenAliases": [
|
|
3774
|
+
"organization:delete",
|
|
3775
|
+
"organisations:delete",
|
|
3776
|
+
"organisation:delete",
|
|
3777
|
+
"org:delete",
|
|
3778
|
+
"orgs:delete"
|
|
3779
|
+
],
|
|
3780
|
+
"id": "organizations:delete",
|
|
3626
3781
|
"pluginAlias": "@sanity/cli",
|
|
3627
3782
|
"pluginName": "@sanity/cli",
|
|
3628
3783
|
"pluginType": "core",
|
|
@@ -3631,46 +3786,139 @@
|
|
|
3631
3786
|
"relativePath": [
|
|
3632
3787
|
"dist",
|
|
3633
3788
|
"commands",
|
|
3634
|
-
"
|
|
3789
|
+
"organizations",
|
|
3790
|
+
"delete.js"
|
|
3791
|
+
]
|
|
3792
|
+
},
|
|
3793
|
+
"organizations:get": {
|
|
3794
|
+
"aliases": [],
|
|
3795
|
+
"args": {
|
|
3796
|
+
"organizationId": {
|
|
3797
|
+
"description": "Organization ID",
|
|
3798
|
+
"name": "organizationId",
|
|
3799
|
+
"required": true
|
|
3800
|
+
}
|
|
3801
|
+
},
|
|
3802
|
+
"description": "Get details of an organization",
|
|
3803
|
+
"examples": [
|
|
3804
|
+
{
|
|
3805
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123",
|
|
3806
|
+
"description": "Get details of a specific organization"
|
|
3807
|
+
}
|
|
3808
|
+
],
|
|
3809
|
+
"flags": {},
|
|
3810
|
+
"hasDynamicHelp": false,
|
|
3811
|
+
"hiddenAliases": [
|
|
3812
|
+
"organization:get",
|
|
3813
|
+
"organisations:get",
|
|
3814
|
+
"organisation:get",
|
|
3815
|
+
"org:get",
|
|
3816
|
+
"orgs:get"
|
|
3817
|
+
],
|
|
3818
|
+
"id": "organizations:get",
|
|
3819
|
+
"pluginAlias": "@sanity/cli",
|
|
3820
|
+
"pluginName": "@sanity/cli",
|
|
3821
|
+
"pluginType": "core",
|
|
3822
|
+
"strict": true,
|
|
3823
|
+
"isESM": true,
|
|
3824
|
+
"relativePath": [
|
|
3825
|
+
"dist",
|
|
3826
|
+
"commands",
|
|
3827
|
+
"organizations",
|
|
3635
3828
|
"get.js"
|
|
3636
3829
|
]
|
|
3637
3830
|
},
|
|
3638
|
-
"
|
|
3831
|
+
"organizations:list": {
|
|
3639
3832
|
"aliases": [],
|
|
3640
3833
|
"args": {},
|
|
3641
|
-
"description": "List
|
|
3834
|
+
"description": "List organizations you are a member of",
|
|
3642
3835
|
"examples": [
|
|
3643
3836
|
{
|
|
3644
3837
|
"command": "<%= config.bin %> <%= command.id %>",
|
|
3645
|
-
"description": "List all
|
|
3838
|
+
"description": "List all your organizations"
|
|
3839
|
+
}
|
|
3840
|
+
],
|
|
3841
|
+
"flags": {},
|
|
3842
|
+
"hasDynamicHelp": false,
|
|
3843
|
+
"hiddenAliases": [
|
|
3844
|
+
"organization:list",
|
|
3845
|
+
"organisations:list",
|
|
3846
|
+
"organisation:list",
|
|
3847
|
+
"org:list",
|
|
3848
|
+
"orgs:list"
|
|
3849
|
+
],
|
|
3850
|
+
"id": "organizations:list",
|
|
3851
|
+
"pluginAlias": "@sanity/cli",
|
|
3852
|
+
"pluginName": "@sanity/cli",
|
|
3853
|
+
"pluginType": "core",
|
|
3854
|
+
"strict": true,
|
|
3855
|
+
"isESM": true,
|
|
3856
|
+
"relativePath": [
|
|
3857
|
+
"dist",
|
|
3858
|
+
"commands",
|
|
3859
|
+
"organizations",
|
|
3860
|
+
"list.js"
|
|
3861
|
+
]
|
|
3862
|
+
},
|
|
3863
|
+
"organizations:update": {
|
|
3864
|
+
"aliases": [],
|
|
3865
|
+
"args": {
|
|
3866
|
+
"organizationId": {
|
|
3867
|
+
"description": "Organization ID",
|
|
3868
|
+
"name": "organizationId",
|
|
3869
|
+
"required": true
|
|
3870
|
+
}
|
|
3871
|
+
},
|
|
3872
|
+
"description": "Update an organization",
|
|
3873
|
+
"examples": [
|
|
3874
|
+
{
|
|
3875
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123 --name \"New Name\"",
|
|
3876
|
+
"description": "Rename an organization"
|
|
3646
3877
|
},
|
|
3647
3878
|
{
|
|
3648
|
-
"command": "<%= config.bin %> <%= command.id %> --
|
|
3649
|
-
"description": "
|
|
3879
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123 --slug new-slug",
|
|
3880
|
+
"description": "Set the organization slug (requires authSAML feature)"
|
|
3650
3881
|
},
|
|
3651
3882
|
{
|
|
3652
|
-
"command": "<%= config.bin %> <%= command.id %> --
|
|
3653
|
-
"description": "
|
|
3883
|
+
"command": "<%= config.bin %> <%= command.id %> org-abc123 --default-role viewer",
|
|
3884
|
+
"description": "Change the default member role"
|
|
3654
3885
|
}
|
|
3655
3886
|
],
|
|
3656
3887
|
"flags": {
|
|
3657
|
-
"
|
|
3658
|
-
"description": "
|
|
3659
|
-
"name": "
|
|
3660
|
-
"
|
|
3661
|
-
"
|
|
3888
|
+
"default-role": {
|
|
3889
|
+
"description": "New default role for new members",
|
|
3890
|
+
"name": "default-role",
|
|
3891
|
+
"required": false,
|
|
3892
|
+
"hasDynamicHelp": false,
|
|
3893
|
+
"multiple": false,
|
|
3894
|
+
"type": "option"
|
|
3662
3895
|
},
|
|
3663
|
-
"
|
|
3664
|
-
"
|
|
3665
|
-
"
|
|
3666
|
-
"
|
|
3667
|
-
"
|
|
3668
|
-
"
|
|
3896
|
+
"name": {
|
|
3897
|
+
"description": "New organization name",
|
|
3898
|
+
"name": "name",
|
|
3899
|
+
"required": false,
|
|
3900
|
+
"hasDynamicHelp": false,
|
|
3901
|
+
"multiple": false,
|
|
3902
|
+
"type": "option"
|
|
3903
|
+
},
|
|
3904
|
+
"slug": {
|
|
3905
|
+
"description": "New URL slug (requires authSAML feature on the organization)",
|
|
3906
|
+
"name": "slug",
|
|
3907
|
+
"required": false,
|
|
3908
|
+
"hasDynamicHelp": false,
|
|
3909
|
+
"multiple": false,
|
|
3910
|
+
"type": "option"
|
|
3669
3911
|
}
|
|
3670
3912
|
},
|
|
3671
3913
|
"hasDynamicHelp": false,
|
|
3672
|
-
"hiddenAliases": [
|
|
3673
|
-
|
|
3914
|
+
"hiddenAliases": [
|
|
3915
|
+
"organization:update",
|
|
3916
|
+
"organisations:update",
|
|
3917
|
+
"organisation:update",
|
|
3918
|
+
"org:update",
|
|
3919
|
+
"orgs:update"
|
|
3920
|
+
],
|
|
3921
|
+
"id": "organizations:update",
|
|
3674
3922
|
"pluginAlias": "@sanity/cli",
|
|
3675
3923
|
"pluginName": "@sanity/cli",
|
|
3676
3924
|
"pluginType": "core",
|
|
@@ -3679,8 +3927,8 @@
|
|
|
3679
3927
|
"relativePath": [
|
|
3680
3928
|
"dist",
|
|
3681
3929
|
"commands",
|
|
3682
|
-
"
|
|
3683
|
-
"
|
|
3930
|
+
"organizations",
|
|
3931
|
+
"update.js"
|
|
3684
3932
|
]
|
|
3685
3933
|
},
|
|
3686
3934
|
"projects:create": {
|
|
@@ -5196,5 +5444,5 @@
|
|
|
5196
5444
|
]
|
|
5197
5445
|
}
|
|
5198
5446
|
},
|
|
5199
|
-
"version": "7.
|
|
5447
|
+
"version": "7.10.0"
|
|
5200
5448
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sanity/cli",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.10.0",
|
|
4
4
|
"description": "Sanity CLI tool for managing Sanity projects and organizations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"access": "public"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@oclif/core": "^4.11.
|
|
59
|
-
"@oclif/plugin-help": "^6.2.
|
|
60
|
-
"@oclif/plugin-not-found": "^3.2.
|
|
61
|
-
"@sanity/client": "^7.23.
|
|
58
|
+
"@oclif/core": "^4.11.14",
|
|
59
|
+
"@oclif/plugin-help": "^6.2.53",
|
|
60
|
+
"@oclif/plugin-not-found": "^3.2.88",
|
|
61
|
+
"@sanity/client": "^7.23.2",
|
|
62
62
|
"@sanity/codegen": "^7.0.3",
|
|
63
63
|
"@sanity/descriptors": "^1.3.0",
|
|
64
64
|
"@sanity/export": "^6.2.0",
|
|
@@ -66,11 +66,11 @@
|
|
|
66
66
|
"@sanity/id-utils": "^1.0.0",
|
|
67
67
|
"@sanity/import": "^6.0.3",
|
|
68
68
|
"@sanity/migrate": "^7.0.3",
|
|
69
|
-
"@sanity/runtime-cli": "^17.
|
|
70
|
-
"@sanity/schema": "^6.
|
|
69
|
+
"@sanity/runtime-cli": "^17.1.0",
|
|
70
|
+
"@sanity/schema": "^6.5.0",
|
|
71
71
|
"@sanity/telemetry": "^1.1.0",
|
|
72
72
|
"@sanity/template-validator": "^3.1.0",
|
|
73
|
-
"@sanity/types": "^6.
|
|
73
|
+
"@sanity/types": "^6.5.0",
|
|
74
74
|
"@sanity/worker-channels": "^2.0.0",
|
|
75
75
|
"@vercel/frameworks": "3.29.0",
|
|
76
76
|
"chokidar": "^5.0.0",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"execa": "^9.6.0",
|
|
83
83
|
"form-data": "^4.0.5",
|
|
84
84
|
"get-latest-version": "^6.0.1",
|
|
85
|
-
"groq-js": "^1.30.
|
|
85
|
+
"groq-js": "^1.30.3",
|
|
86
86
|
"gunzip-maybe": "^1.4.2",
|
|
87
87
|
"import-meta-resolve": "^4.2.0",
|
|
88
88
|
"is-installed-globally": "^1.0.0",
|
|
@@ -112,22 +112,22 @@
|
|
|
112
112
|
"tar-fs": "^3.1.2",
|
|
113
113
|
"tar-stream": "^3.2.0",
|
|
114
114
|
"tinyglobby": "^0.2.17",
|
|
115
|
-
"tsx": "^4.
|
|
115
|
+
"tsx": "^4.23.1",
|
|
116
116
|
"typeid-js": "^1.2.0",
|
|
117
|
-
"vite": "^8.1.
|
|
117
|
+
"vite": "^8.1.5",
|
|
118
118
|
"which": "^6.0.1",
|
|
119
119
|
"yaml": "^2.9.0",
|
|
120
120
|
"zod": "^4.4.3",
|
|
121
121
|
"@sanity/cli-build": "^4.1.0",
|
|
122
|
-
"@sanity/cli
|
|
123
|
-
"@sanity/
|
|
122
|
+
"@sanity/workbench-cli": "^1.5.0",
|
|
123
|
+
"@sanity/cli-core": "^2.5.0"
|
|
124
124
|
},
|
|
125
125
|
"devDependencies": {
|
|
126
126
|
"@eslint/compat": "^2.1.0",
|
|
127
|
-
"@sanity/pkg-utils": "^
|
|
128
|
-
"@sanity/ui": "^3.
|
|
127
|
+
"@sanity/pkg-utils": "^11.0.9",
|
|
128
|
+
"@sanity/ui": "^3.3.5",
|
|
129
129
|
"@swc/cli": "^0.8.1",
|
|
130
|
-
"@swc/core": "^1.15.
|
|
130
|
+
"@swc/core": "^1.15.43",
|
|
131
131
|
"@types/debug": "^4.1.13",
|
|
132
132
|
"@types/gunzip-maybe": "^1.4.3",
|
|
133
133
|
"@types/jsdom": "^28.0.3",
|
|
@@ -142,21 +142,21 @@
|
|
|
142
142
|
"@types/tar-fs": "^2.0.4",
|
|
143
143
|
"@types/tar-stream": "^3.1.4",
|
|
144
144
|
"@types/which": "^3.0.4",
|
|
145
|
-
"@vitest/coverage-istanbul": "^4.1.
|
|
145
|
+
"@vitest/coverage-istanbul": "^4.1.10",
|
|
146
146
|
"babel-plugin-react-compiler": "^1.0.0",
|
|
147
|
-
"eslint": "^10.
|
|
147
|
+
"eslint": "^10.7.0",
|
|
148
148
|
"jsdom": "^29.1.1",
|
|
149
149
|
"nock": "^14.0.15",
|
|
150
|
-
"oclif": "^4.23.
|
|
150
|
+
"oclif": "^4.23.27",
|
|
151
151
|
"publint": "^0.3.21",
|
|
152
152
|
"rimraf": "^6.0.1",
|
|
153
|
-
"sanity": "^6.
|
|
154
|
-
"typescript": "^
|
|
155
|
-
"vitest": "^4.1.
|
|
153
|
+
"sanity": "^6.5.0",
|
|
154
|
+
"typescript": "^6.0.3",
|
|
155
|
+
"vitest": "^4.1.10",
|
|
156
156
|
"@repo/package.config": "0.0.1",
|
|
157
|
-
"@
|
|
158
|
-
"@sanity/
|
|
159
|
-
"@
|
|
157
|
+
"@repo/tsconfig": "3.70.0",
|
|
158
|
+
"@sanity/cli-test": "6.0.0",
|
|
159
|
+
"@sanity/eslint-config-cli": "1.1.3"
|
|
160
160
|
},
|
|
161
161
|
"peerDependencies": {
|
|
162
162
|
"babel-plugin-react-compiler": "*"
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
"node": ">=22.12"
|
|
171
171
|
},
|
|
172
172
|
"scripts": {
|
|
173
|
-
"build": "swc --delete-dir-on-start --strip-leading-paths --out-dir dist/ src
|
|
173
|
+
"build": "swc --delete-dir-on-start --strip-leading-paths --out-dir dist/ src",
|
|
174
174
|
"postbuild": "pnpm run manifest:generate && pnpm run check:topic-aliases",
|
|
175
175
|
"build:types": "pkg-utils build --emitDeclarationOnly",
|
|
176
176
|
"check:topic-aliases": "tsx scripts/check-topic-aliases.ts",
|