@theia/core 1.61.0-next.8 → 1.61.1
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 +7 -7
- package/i18n/nls.cs.json +34 -5
- package/i18n/nls.de.json +34 -5
- package/i18n/nls.es.json +34 -5
- package/i18n/nls.fr.json +34 -5
- package/i18n/nls.hu.json +34 -5
- package/i18n/nls.it.json +34 -5
- package/i18n/nls.ja.json +34 -5
- package/i18n/nls.json +35 -6
- package/i18n/nls.ko.json +34 -5
- package/i18n/nls.pl.json +34 -5
- package/i18n/nls.pt-br.json +34 -5
- package/i18n/nls.ru.json +34 -5
- package/i18n/nls.tr.json +34 -5
- package/i18n/nls.zh-cn.json +34 -5
- package/i18n/nls.zh-tw.json +34 -5
- package/lib/browser/catalog.json +322 -45
- package/lib/browser/dialogs.d.ts +8 -1
- package/lib/browser/dialogs.d.ts.map +1 -1
- package/lib/browser/dialogs.js +11 -4
- package/lib/browser/dialogs.js.map +1 -1
- package/lib/browser/frontend-application-module.js +1 -1
- package/lib/browser/frontend-application-module.js.map +1 -1
- package/lib/browser/preload/i18n-preload-contribution.js +1 -1
- package/lib/browser/preload/i18n-preload-contribution.js.map +1 -1
- package/lib/browser/shell/application-shell.d.ts +17 -5
- package/lib/browser/shell/application-shell.d.ts.map +1 -1
- package/lib/browser/shell/application-shell.js +94 -40
- package/lib/browser/shell/application-shell.js.map +1 -1
- package/lib/browser/shell/index.d.ts +1 -0
- package/lib/browser/shell/index.d.ts.map +1 -1
- package/lib/browser/shell/index.js +1 -0
- package/lib/browser/shell/index.js.map +1 -1
- package/lib/browser/shell/tab-bars.d.ts.map +1 -1
- package/lib/browser/shell/tab-bars.js +3 -2
- package/lib/browser/shell/tab-bars.js.map +1 -1
- package/lib/browser/shell/theia-dock-panel.d.ts +4 -10
- package/lib/browser/shell/theia-dock-panel.d.ts.map +1 -1
- package/lib/browser/shell/theia-dock-panel.js +7 -84
- package/lib/browser/shell/theia-dock-panel.js.map +1 -1
- package/lib/browser/shell/theia-split-panel.d.ts +6 -0
- package/lib/browser/shell/theia-split-panel.d.ts.map +1 -0
- package/lib/browser/shell/theia-split-panel.js +56 -0
- package/lib/browser/shell/theia-split-panel.js.map +1 -0
- package/lib/browser/tree/tree-widget.d.ts +1 -0
- package/lib/browser/tree/tree-widget.d.ts.map +1 -1
- package/lib/browser/tree/tree-widget.js +6 -0
- package/lib/browser/tree/tree-widget.js.map +1 -1
- package/lib/browser/view-container.d.ts.map +1 -1
- package/lib/browser/view-container.js +2 -1
- package/lib/browser/view-container.js.map +1 -1
- package/lib/browser/widgets/widget.d.ts.map +1 -1
- package/lib/browser/widgets/widget.js.map +1 -1
- package/lib/common/content-replacer.d.ts.map +1 -1
- package/lib/common/content-replacer.js +2 -1
- package/lib/common/content-replacer.js.map +1 -1
- package/lib/common/content-replacer.spec.js +2 -2
- package/lib/common/content-replacer.spec.js.map +1 -1
- package/lib/electron-browser/menu/electron-main-menu-factory.d.ts +1 -1
- package/lib/electron-browser/menu/electron-main-menu-factory.d.ts.map +1 -1
- package/lib/electron-browser/menu/electron-main-menu-factory.js +15 -13
- package/lib/electron-browser/menu/electron-main-menu-factory.js.map +1 -1
- package/lib/electron-browser/menu/electron-menu-contribution.d.ts.map +1 -1
- package/lib/electron-browser/menu/electron-menu-contribution.js +1 -4
- package/lib/electron-browser/menu/electron-menu-contribution.js.map +1 -1
- package/lib/electron-main/electron-main-application.d.ts +1 -1
- package/lib/electron-main/electron-main-application.d.ts.map +1 -1
- package/lib/electron-main/electron-main-application.js +7 -5
- package/lib/electron-main/electron-main-application.js.map +1 -1
- package/lib/node/backend-application-module.d.ts.map +1 -1
- package/lib/node/backend-application-module.js +3 -0
- package/lib/node/backend-application-module.js.map +1 -1
- package/lib/node/index.d.ts +1 -0
- package/lib/node/index.d.ts.map +1 -1
- package/lib/node/index.js +1 -0
- package/lib/node/index.js.map +1 -1
- package/lib/node/setting-service.d.ts +20 -0
- package/lib/node/setting-service.d.ts.map +1 -0
- package/lib/node/setting-service.js +80 -0
- package/lib/node/setting-service.js.map +1 -0
- package/package.json +7 -9
- package/src/browser/dialogs.ts +11 -4
- package/src/browser/frontend-application-module.ts +1 -1
- package/src/browser/preload/i18n-preload-contribution.ts +1 -1
- package/src/browser/shell/application-shell.ts +96 -34
- package/src/browser/shell/index.ts +1 -0
- package/src/browser/shell/tab-bars.ts +3 -2
- package/src/browser/shell/theia-dock-panel.ts +10 -91
- package/src/browser/shell/theia-split-panel.ts +56 -0
- package/src/browser/style/index.css +3 -11
- package/src/browser/style/sidepanel.css +2 -4
- package/src/browser/tree/tree-widget.tsx +7 -0
- package/src/browser/view-container.ts +2 -1
- package/src/browser/widgets/widget.ts +1 -0
- package/src/common/content-replacer.spec.ts +2 -2
- package/src/common/content-replacer.ts +2 -1
- package/src/electron-browser/menu/electron-main-menu-factory.ts +15 -14
- package/src/electron-browser/menu/electron-menu-contribution.ts +1 -4
- package/src/electron-main/electron-main-application.ts +8 -5
- package/src/node/backend-application-module.ts +4 -0
- package/src/node/index.ts +1 -0
- package/src/node/setting-service.ts +78 -0
package/lib/browser/catalog.json
CHANGED
|
@@ -2,6 +2,34 @@
|
|
|
2
2
|
"$schema": "https://json.schemastore.org/schema-catalog.json",
|
|
3
3
|
"version": 1,
|
|
4
4
|
"schemas": [
|
|
5
|
+
{
|
|
6
|
+
"name": "Upsun config",
|
|
7
|
+
"description": "Upsun configuration file",
|
|
8
|
+
"fileMatch": ["**/.upsun/*.yml", "**/.upsun/*.yaml"],
|
|
9
|
+
"url": "https://raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/upsun.json"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"name": "Platform.sh application",
|
|
13
|
+
"description": "Platform.sh application configuration file",
|
|
14
|
+
"fileMatch": [
|
|
15
|
+
".platform.app.yml",
|
|
16
|
+
".platform.app.yaml",
|
|
17
|
+
"**/.platform.app.yml"
|
|
18
|
+
],
|
|
19
|
+
"url": "https://raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.application.json"
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"name": "Platform.sh routes",
|
|
23
|
+
"description": "Platform.sh routes configuration file",
|
|
24
|
+
"fileMatch": ["**/.platform/routes.yml", "**/.platform/routes.yaml"],
|
|
25
|
+
"url": "https://raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.routes.json"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"name": "Platform.sh services",
|
|
29
|
+
"description": "Platform.sh services configuration file",
|
|
30
|
+
"fileMatch": ["**/.platform/services.yml", "**/.platform/services.yaml"],
|
|
31
|
+
"url": "https://raw.githubusercontent.com/platformsh/platformify/refs/heads/main/validator/schema/platformsh.services.json"
|
|
32
|
+
},
|
|
5
33
|
{
|
|
6
34
|
"name": "1Password SSH Agent Config",
|
|
7
35
|
"description": "Configuration file for the 1Password SSH agent",
|
|
@@ -114,19 +142,20 @@
|
|
|
114
142
|
"name": "ABCInventoryModuleData",
|
|
115
143
|
"description": "ABCInventoryModuleData defining the structure of ABCInventoryModuleData including Principal Data, inventory, and transaction data in ABC-Plan's Inventory Management Module",
|
|
116
144
|
"fileMatch": ["abc-inventory-module-data-*.json"],
|
|
117
|
-
"url": "https://json.schemastore.org/abc-inventory-module-data-
|
|
145
|
+
"url": "https://json.schemastore.org/abc-inventory-module-data-5.1.0.json",
|
|
118
146
|
"versions": {
|
|
119
147
|
"1.0.0": "https://json.schemastore.org/abc-inventory-module-data-1.0.0.json",
|
|
120
148
|
"2.0.0": "https://json.schemastore.org/abc-inventory-module-data-2.0.0.json",
|
|
121
149
|
"3.0.0": "https://json.schemastore.org/abc-inventory-module-data-3.0.0.json",
|
|
122
|
-
"4.0.0": "https://json.schemastore.org/abc-inventory-module-data-4.0.0.json"
|
|
150
|
+
"4.0.0": "https://json.schemastore.org/abc-inventory-module-data-4.0.0.json",
|
|
151
|
+
"5.1.0": "https://json.schemastore.org/abc-inventory-module-data-5.1.0.json"
|
|
123
152
|
}
|
|
124
153
|
},
|
|
125
154
|
{
|
|
126
155
|
"name": "ABCSupplyPlan",
|
|
127
156
|
"description": "ABCSupplyPlan representing all the state for performing inventory optimization and expiry analysis in ABC-Plan MasterPlanner",
|
|
128
157
|
"fileMatch": ["abc-supply-plan-*.json"],
|
|
129
|
-
"url": "https://json.schemastore.org/abc-supply-plan-
|
|
158
|
+
"url": "https://json.schemastore.org/abc-supply-plan-9.0.0.json",
|
|
130
159
|
"versions": {
|
|
131
160
|
"1.0.0": "https://json.schemastore.org/abc-supply-plan-1.0.0.json",
|
|
132
161
|
"2.0.0": "https://json.schemastore.org/abc-supply-plan-2.0.0.json",
|
|
@@ -135,7 +164,8 @@
|
|
|
135
164
|
"5.0.0": "https://json.schemastore.org/abc-supply-plan-5.0.0.json",
|
|
136
165
|
"6.0.0": "https://json.schemastore.org/abc-supply-plan-6.0.0.json",
|
|
137
166
|
"7.0.0": "https://json.schemastore.org/abc-supply-plan-7.0.0.json",
|
|
138
|
-
"8.0.0": "https://json.schemastore.org/abc-supply-plan-8.0.0.json"
|
|
167
|
+
"8.0.0": "https://json.schemastore.org/abc-supply-plan-8.0.0.json",
|
|
168
|
+
"9.0.0": "https://json.schemastore.org/abc-supply-plan-9.0.0.json"
|
|
139
169
|
}
|
|
140
170
|
},
|
|
141
171
|
{
|
|
@@ -516,6 +546,18 @@
|
|
|
516
546
|
"fileMatch": ["buf.work.yaml"],
|
|
517
547
|
"url": "https://json.schemastore.org/buf.work.json"
|
|
518
548
|
},
|
|
549
|
+
{
|
|
550
|
+
"name": "cargo-mutants-config.yaml",
|
|
551
|
+
"description": "cargo-mutants configuration file",
|
|
552
|
+
"fileMatch": ["**/.cargo/mutants.toml"],
|
|
553
|
+
"url": "https://json.schemastore.org/cargo-mutants-config.json"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"name": "Cinnamon Spice info.json",
|
|
557
|
+
"description": "The 'info.json' metadata file used in Cinnamon Spice components",
|
|
558
|
+
"fileMatch": [],
|
|
559
|
+
"url": "https://json.schemastore.org/cinnamon-spice.info.json"
|
|
560
|
+
},
|
|
519
561
|
{
|
|
520
562
|
"name": "CodeRabbit",
|
|
521
563
|
"description": "Supercharge your entire team with AI-driven contextual feedback & smart chat",
|
|
@@ -765,7 +807,7 @@
|
|
|
765
807
|
"name": "bitbucket-pipelines",
|
|
766
808
|
"description": "Bitbucket Pipelines CI/CD manifest",
|
|
767
809
|
"fileMatch": ["bitbucket-pipelines.yml"],
|
|
768
|
-
"url": "https://bitbucket.org/
|
|
810
|
+
"url": "https://api.bitbucket.org/schemas/pipelines-configuration"
|
|
769
811
|
},
|
|
770
812
|
{
|
|
771
813
|
"name": "bitrise",
|
|
@@ -797,6 +839,11 @@
|
|
|
797
839
|
"fileMatch": [".bowerrc"],
|
|
798
840
|
"url": "https://json.schemastore.org/bowerrc.json"
|
|
799
841
|
},
|
|
842
|
+
{
|
|
843
|
+
"name": "BOSH CPI Config",
|
|
844
|
+
"description": "CPI-specific config for BOSH Director",
|
|
845
|
+
"url": "https://json.schemastore.org/bosh-cpi-config.json"
|
|
846
|
+
},
|
|
800
847
|
{
|
|
801
848
|
"name": "BOSH Deploy Config",
|
|
802
849
|
"description": "Deploy config for BOSH CLI",
|
|
@@ -818,7 +865,7 @@
|
|
|
818
865
|
"name": "partial-black.json",
|
|
819
866
|
"description": "black, a Python formatter",
|
|
820
867
|
"fileMatch": [],
|
|
821
|
-
"url": "https://
|
|
868
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/partial-black.json"
|
|
822
869
|
},
|
|
823
870
|
{
|
|
824
871
|
"name": "bozr.suite.json",
|
|
@@ -844,6 +891,16 @@
|
|
|
844
891
|
"fileMatch": ["bsconfig.json"],
|
|
845
892
|
"url": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json"
|
|
846
893
|
},
|
|
894
|
+
{
|
|
895
|
+
"name": "build-changelog",
|
|
896
|
+
"description": "Changelog files for build-changelog action",
|
|
897
|
+
"fileMatch": [
|
|
898
|
+
"**/build-changelog/*.yml",
|
|
899
|
+
"**/build-changelog/*.yaml",
|
|
900
|
+
"**/build-changelog/*.toml"
|
|
901
|
+
],
|
|
902
|
+
"url": "https://raw.githubusercontent.com/jelmore1674/build-changelog/refs/tags/v1/schemas/changlelog.json"
|
|
903
|
+
},
|
|
847
904
|
{
|
|
848
905
|
"name": "Build Info",
|
|
849
906
|
"description": "Build Info is the metadata of a build. It includes all the details about the build broken down into segments that include version history, artifacts, project modules, dependencies, and everything that was required to create the build",
|
|
@@ -1043,11 +1100,23 @@
|
|
|
1043
1100
|
"fileMatch": ["chromia.yml", "chromia.yaml"],
|
|
1044
1101
|
"url": "https://gitlab.com/chromaway/core-tools/chromia-cli-tools/-/raw/dev/chromia-build-tools/src/main/resources/chromia-model-schema.json"
|
|
1045
1102
|
},
|
|
1103
|
+
{
|
|
1104
|
+
"name": "Chromia Seeder Root Config",
|
|
1105
|
+
"description": "Chromia Seeder Root Config File",
|
|
1106
|
+
"fileMatch": ["**/.chromia/seeder/**/seeder.yml"],
|
|
1107
|
+
"url": "https://gitlab.com/chromaway/core-tools/rell-toolbox/-/raw/dev/seeder/src/main/resources/chromia-seeder-config-schema.json"
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"name": "Chromia Seeder Module Config",
|
|
1111
|
+
"description": "Chromia Seeder Module Config File",
|
|
1112
|
+
"fileMatch": ["**/.chromia/seeder/**/modules/**/*.yml"],
|
|
1113
|
+
"url": "https://gitlab.com/chromaway/core-tools/rell-toolbox/-/raw/dev/seeder/src/main/resources/chromia-seeder-module-schema.json"
|
|
1114
|
+
},
|
|
1046
1115
|
{
|
|
1047
1116
|
"name": "cibuildwheel",
|
|
1048
1117
|
"description": "cibuildwheel, a Python redistributable wheel builder",
|
|
1049
1118
|
"fileMatch": ["cibuildwheel.toml", ".cibuildwheel.toml"],
|
|
1050
|
-
"url": "https://
|
|
1119
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/cibuildwheel.json"
|
|
1051
1120
|
},
|
|
1052
1121
|
{
|
|
1053
1122
|
"name": "CityJSON",
|
|
@@ -1576,7 +1645,7 @@
|
|
|
1576
1645
|
"cloudformation.yml",
|
|
1577
1646
|
"cloudformation.yaml"
|
|
1578
1647
|
],
|
|
1579
|
-
"url": "https://
|
|
1648
|
+
"url": "https://raw.githubusercontent.com/awslabs/goformation/master/schema/cloudformation.schema.json"
|
|
1580
1649
|
},
|
|
1581
1650
|
{
|
|
1582
1651
|
"name": "AWS CloudFormation Serverless Application Model (SAM)",
|
|
@@ -1663,7 +1732,7 @@
|
|
|
1663
1732
|
"name": "Citation File Format",
|
|
1664
1733
|
"description": "A YAML file with citation metadata for software or datasets",
|
|
1665
1734
|
"fileMatch": ["CITATION.cff"],
|
|
1666
|
-
"url": "https://raw.githubusercontent.com/citation-file-format/citation-file-format/
|
|
1735
|
+
"url": "https://raw.githubusercontent.com/citation-file-format/citation-file-format/1.2.0/schema.json",
|
|
1667
1736
|
"versions": {
|
|
1668
1737
|
"1.2.0": "https://raw.githubusercontent.com/citation-file-format/citation-file-format/1.2.0/schema.json"
|
|
1669
1738
|
}
|
|
@@ -2851,6 +2920,15 @@
|
|
|
2851
2920
|
],
|
|
2852
2921
|
"url": "https://hazelcast.com/schema/config/hazelcast-config-5.5.json"
|
|
2853
2922
|
},
|
|
2923
|
+
{
|
|
2924
|
+
"name": "Home Assistant Integration Manifest",
|
|
2925
|
+
"description": "Home Assistant integration manifest file. Documentation: https://developers.home-assistant.io/docs/creating_integration_manifest/",
|
|
2926
|
+
"fileMatch": [
|
|
2927
|
+
"**/homeassistant/components/*/manifest.json",
|
|
2928
|
+
"**/custom_components/*/manifest.json"
|
|
2929
|
+
],
|
|
2930
|
+
"url": "https://raw.githubusercontent.com/home-assistant/core/refs/heads/dev/script/json_schemas/manifest_schema.json"
|
|
2931
|
+
},
|
|
2854
2932
|
{
|
|
2855
2933
|
"name": "Homer dashboard configuration",
|
|
2856
2934
|
"description": "Home dashboard configuration file. Documentation: https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md",
|
|
@@ -2897,13 +2975,14 @@
|
|
|
2897
2975
|
"name": "IBM Zapp document",
|
|
2898
2976
|
"description": "IBM Z APPlication configuration file for IBM zDevOps development tools such as Z Open Editor",
|
|
2899
2977
|
"fileMatch": ["zapp.yaml", "zapp.json"],
|
|
2900
|
-
"url": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.
|
|
2978
|
+
"url": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.4.0.json",
|
|
2901
2979
|
"versions": {
|
|
2902
2980
|
"1.0.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.0.0.json",
|
|
2903
2981
|
"1.1.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.1.0.json",
|
|
2904
2982
|
"1.2.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.2.0.json",
|
|
2905
2983
|
"1.2.1": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.2.1.json",
|
|
2906
|
-
"1.3.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.3.0.json"
|
|
2984
|
+
"1.3.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.3.0.json",
|
|
2985
|
+
"1.4.0": "https://raw.githubusercontent.com/IBM/zopeneditor-about/main/zapp/zapp-schema-1.4.0.json"
|
|
2907
2986
|
}
|
|
2908
2987
|
},
|
|
2909
2988
|
{
|
|
@@ -3062,8 +3141,9 @@
|
|
|
3062
3141
|
"name": "JReleaser",
|
|
3063
3142
|
"description": "JReleaser config file",
|
|
3064
3143
|
"fileMatch": ["jreleaser.yml", "jreleaser.json"],
|
|
3065
|
-
"url": "https://json.schemastore.org/jreleaser-1.
|
|
3144
|
+
"url": "https://json.schemastore.org/jreleaser-1.18.0.json",
|
|
3066
3145
|
"versions": {
|
|
3146
|
+
"1.18.0": "https://json.schemastore.org/jreleaser-1.18.0.json",
|
|
3067
3147
|
"1.17.0": "https://json.schemastore.org/jreleaser-1.17.0.json",
|
|
3068
3148
|
"1.16.0": "https://json.schemastore.org/jreleaser-1.16.0.json",
|
|
3069
3149
|
"1.15.0": "https://json.schemastore.org/jreleaser-1.15.0.json",
|
|
@@ -3654,9 +3734,9 @@
|
|
|
3654
3734
|
"url": "https://raw.githubusercontent.com/cppalliance/mrdocs/refs/heads/master/docs/mrdocs.schema.json"
|
|
3655
3735
|
},
|
|
3656
3736
|
{
|
|
3657
|
-
"name": "MLOS
|
|
3658
|
-
"description": "Config files for the mlos_bench utility in MLOS",
|
|
3659
|
-
"fileMatch": ["*.mlos.jsonc", "*.mlos.
|
|
3737
|
+
"name": "MLOS Config (*.mlos.jsonc, *.mlos.json5, *.mlos.json)",
|
|
3738
|
+
"description": "Config files for the mlos_bench utility in MLOS. See Also: https://aka.ms/MLOS",
|
|
3739
|
+
"fileMatch": ["*.mlos.jsonc", "*.mlos.json5", "*.mlos.json"],
|
|
3660
3740
|
"url": "https://raw.githubusercontent.com/microsoft/MLOS/main/mlos_bench/mlos_bench/config/schemas/mlos-bench-config-schema.json"
|
|
3661
3741
|
},
|
|
3662
3742
|
{
|
|
@@ -3747,6 +3827,12 @@
|
|
|
3747
3827
|
"fileMatch": ["*.nac.yml", "*.nac.yaml", "*.aac.yml", "*.aac.yaml"],
|
|
3748
3828
|
"url": "https://raw.githubusercontent.com/netascode/schema/main/schema.json"
|
|
3749
3829
|
},
|
|
3830
|
+
{
|
|
3831
|
+
"name": "nFPM",
|
|
3832
|
+
"description": "nFPM configuration file",
|
|
3833
|
+
"fileMatch": ["nfpm.yaml"],
|
|
3834
|
+
"url": "https://nfpm.goreleaser.com/static/schema.json"
|
|
3835
|
+
},
|
|
3750
3836
|
{
|
|
3751
3837
|
"name": "Nightwatch.js",
|
|
3752
3838
|
"description": "nightwatch.js config",
|
|
@@ -4011,6 +4097,12 @@
|
|
|
4011
4097
|
],
|
|
4012
4098
|
"url": "https://raw.githubusercontent.com/outblocks/outblocks-cli/master/schema/schema-table.json"
|
|
4013
4099
|
},
|
|
4100
|
+
{
|
|
4101
|
+
"name": "ORT Server repository environment configuration",
|
|
4102
|
+
"description": "Repository environment configuration to configure infrastructure services, environment variables, and package-manager specific settings",
|
|
4103
|
+
"fileMatch": [".ort.env.yml", ".ort.env.yaml"],
|
|
4104
|
+
"url": "https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/refs/heads/main/integrations/schemas/repository-environment-config.json"
|
|
4105
|
+
},
|
|
4014
4106
|
{
|
|
4015
4107
|
"name": "Ory Kratos configuration",
|
|
4016
4108
|
"description": "Ory Kratos configuration file",
|
|
@@ -4377,6 +4469,42 @@
|
|
|
4377
4469
|
"fileMatch": ["prisma.yml"],
|
|
4378
4470
|
"url": "https://json.schemastore.org/prisma.json"
|
|
4379
4471
|
},
|
|
4472
|
+
{
|
|
4473
|
+
"name": "ProActions AI-Kit Configuration",
|
|
4474
|
+
"description": "Eidosmedia ProActions AI-Kit main configuration file",
|
|
4475
|
+
"fileMatch": ["*.ai-kit.yaml"],
|
|
4476
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/ai-kit.schema.json"
|
|
4477
|
+
},
|
|
4478
|
+
{
|
|
4479
|
+
"name": "ProActions AI-Kit Configuration for Services",
|
|
4480
|
+
"description": "Eidosmedia ProActions AI-Kit services configuration files",
|
|
4481
|
+
"fileMatch": ["*.ai-kit.serv.yaml"],
|
|
4482
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/partial-services.schema.json"
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"name": "ProActions AI-Kit Configuration for Menus",
|
|
4486
|
+
"description": "Eidosmedia ProActions AI-Kit menu configuration files",
|
|
4487
|
+
"fileMatch": ["*.ai-kit.menu.yaml"],
|
|
4488
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/partial-floatingMenu.schema.json"
|
|
4489
|
+
},
|
|
4490
|
+
{
|
|
4491
|
+
"name": "ProActions AI-Kit Configuration for Templates",
|
|
4492
|
+
"description": "Eidosmedia ProActions AI-Kit template configuration files",
|
|
4493
|
+
"fileMatch": ["*.ai-kit.templ.yaml"],
|
|
4494
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/partial-templates.schema.json"
|
|
4495
|
+
},
|
|
4496
|
+
{
|
|
4497
|
+
"name": "ProActions AI-Kit Configuration for Sections",
|
|
4498
|
+
"description": "Eidosmedia ProActions AI-Kit section configuration files",
|
|
4499
|
+
"fileMatch": ["*.ai-kit.sect.yaml"],
|
|
4500
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/partial-section.schema.json"
|
|
4501
|
+
},
|
|
4502
|
+
{
|
|
4503
|
+
"name": "ProActions AI-Kit Configuration for Steps",
|
|
4504
|
+
"description": "Eidosmedia ProActions AI-Kit step configuration files",
|
|
4505
|
+
"fileMatch": ["*.ai-kit.step.yaml"],
|
|
4506
|
+
"url": "https://raw.githubusercontent.com/em-al-wi/proactions-schema/main/schema/partial-step.schema.json"
|
|
4507
|
+
},
|
|
4380
4508
|
{
|
|
4381
4509
|
"name": "Problem package generators",
|
|
4382
4510
|
"description": "Generators for programming tasks in the Kattis/CLICS problem package format",
|
|
@@ -4564,7 +4692,7 @@
|
|
|
4564
4692
|
"name": "PyProject",
|
|
4565
4693
|
"description": "Python project metadata and configuration",
|
|
4566
4694
|
"fileMatch": ["pyproject.toml"],
|
|
4567
|
-
"url": "https://
|
|
4695
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/pyproject.json"
|
|
4568
4696
|
},
|
|
4569
4697
|
{
|
|
4570
4698
|
"name": "Pyright",
|
|
@@ -4575,7 +4703,7 @@
|
|
|
4575
4703
|
{
|
|
4576
4704
|
"name": "pytest",
|
|
4577
4705
|
"description": "pytest configuration",
|
|
4578
|
-
"url": "https://
|
|
4706
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/partial-pytest.json"
|
|
4579
4707
|
},
|
|
4580
4708
|
{
|
|
4581
4709
|
"name": "Qgoda",
|
|
@@ -4788,6 +4916,17 @@
|
|
|
4788
4916
|
"fileMatch": ["rockcraft.yaml", "rockcraft.yml"],
|
|
4789
4917
|
"url": "https://raw.githubusercontent.com/canonical/rockcraft/main/schema/rockcraft.json"
|
|
4790
4918
|
},
|
|
4919
|
+
{
|
|
4920
|
+
"name": "Roo Coder Custom Modes",
|
|
4921
|
+
"description": "Roo Coder custom mode configuration files",
|
|
4922
|
+
"fileMatch": [
|
|
4923
|
+
".roomodes",
|
|
4924
|
+
"*.roomodes",
|
|
4925
|
+
"custom_modes.yaml",
|
|
4926
|
+
"custom_modes.yml"
|
|
4927
|
+
],
|
|
4928
|
+
"url": "https://json.schemastore.org/roomodes.json"
|
|
4929
|
+
},
|
|
4791
4930
|
{
|
|
4792
4931
|
"name": "runny",
|
|
4793
4932
|
"description": "runny, a rool for running things",
|
|
@@ -5547,6 +5686,12 @@
|
|
|
5547
5686
|
"fileMatch": ["**/sites/*/config.yaml", "**/sites/*/config.yml"],
|
|
5548
5687
|
"url": "https://json.schemastore.org/typo3.json"
|
|
5549
5688
|
},
|
|
5689
|
+
{
|
|
5690
|
+
"name": "Typst Manifest",
|
|
5691
|
+
"description": "Typst package manifest file (typst.toml)",
|
|
5692
|
+
"fileMatch": ["typst.toml"],
|
|
5693
|
+
"url": "https://json.schemastore.org/typst.json"
|
|
5694
|
+
},
|
|
5550
5695
|
{
|
|
5551
5696
|
"name": "typos.toml",
|
|
5552
5697
|
"description": "typos configuration file",
|
|
@@ -5657,7 +5802,7 @@
|
|
|
5657
5802
|
"name": "uv",
|
|
5658
5803
|
"description": "uv, a fast Python package installer",
|
|
5659
5804
|
"fileMatch": ["uv.toml"],
|
|
5660
|
-
"url": "https://
|
|
5805
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/uv.json"
|
|
5661
5806
|
},
|
|
5662
5807
|
{
|
|
5663
5808
|
"name": "Vector",
|
|
@@ -5685,7 +5830,7 @@
|
|
|
5685
5830
|
},
|
|
5686
5831
|
{
|
|
5687
5832
|
"name": "venvironment.yaml",
|
|
5688
|
-
"description": "Simulation and test environment for Vector
|
|
5833
|
+
"description": "Simulation and test environment for Vector CANoe Server Editions",
|
|
5689
5834
|
"fileMatch": [
|
|
5690
5835
|
"venvironment.yaml",
|
|
5691
5836
|
"*.venvironment.yaml",
|
|
@@ -5694,7 +5839,7 @@
|
|
|
5694
5839
|
"venvironment.json",
|
|
5695
5840
|
"*.venvironment.json"
|
|
5696
5841
|
],
|
|
5697
|
-
"url": "https://json.schemastore.org/venvironment-schema-
|
|
5842
|
+
"url": "https://json.schemastore.org/venvironment-schema-v4.0.0.json",
|
|
5698
5843
|
"versions": {
|
|
5699
5844
|
"1.0.0": "https://json.schemastore.org/venvironment-schema-v1.0.0.json",
|
|
5700
5845
|
"1.1.0": "https://json.schemastore.org/venvironment-schema-v1.1.0.json",
|
|
@@ -5704,7 +5849,8 @@
|
|
|
5704
5849
|
"2.2.0": "https://json.schemastore.org/venvironment-schema-v2.2.0.json",
|
|
5705
5850
|
"3.0.0": "https://json.schemastore.org/venvironment-schema-v3.0.0.json",
|
|
5706
5851
|
"3.1.0": "https://json.schemastore.org/venvironment-schema-v3.1.0.json",
|
|
5707
|
-
"3.2.0": "https://json.schemastore.org/venvironment-schema-v3.2.0.json"
|
|
5852
|
+
"3.2.0": "https://json.schemastore.org/venvironment-schema-v3.2.0.json",
|
|
5853
|
+
"4.0.0": "https://json.schemastore.org/venvironment-schema-v4.0.0.json"
|
|
5708
5854
|
}
|
|
5709
5855
|
},
|
|
5710
5856
|
{
|
|
@@ -5718,14 +5864,47 @@
|
|
|
5718
5864
|
"venvironment-basic.json",
|
|
5719
5865
|
"*.venvironment-basic.json"
|
|
5720
5866
|
],
|
|
5721
|
-
"url": "https://json.schemastore.org/venvironment-basic-schema-
|
|
5867
|
+
"url": "https://json.schemastore.org/venvironment-basic-schema-v4.0.0.json",
|
|
5722
5868
|
"versions": {
|
|
5723
5869
|
"1.0.0": "https://json.schemastore.org/venvironment-basic-schema-v1.0.0.json",
|
|
5724
5870
|
"1.1.0": "https://json.schemastore.org/venvironment-basic-schema-v1.1.0.json",
|
|
5725
5871
|
"2.0.0": "https://json.schemastore.org/venvironment-basic-schema-v2.0.0.json",
|
|
5726
5872
|
"2.1.0": "https://json.schemastore.org/venvironment-basic-schema-v2.1.0.json",
|
|
5727
5873
|
"3.0.0": "https://json.schemastore.org/venvironment-basic-schema-v3.0.0.json",
|
|
5728
|
-
"3.2.0": "https://json.schemastore.org/venvironment-basic-schema-v3.2.0.json"
|
|
5874
|
+
"3.2.0": "https://json.schemastore.org/venvironment-basic-schema-v3.2.0.json",
|
|
5875
|
+
"4.0.0": "https://json.schemastore.org/venvironment-basic-schema-v4.0.0.json"
|
|
5876
|
+
}
|
|
5877
|
+
},
|
|
5878
|
+
{
|
|
5879
|
+
"name": "venvplus.yaml",
|
|
5880
|
+
"description": "venvplus settings of Vector CANoe Server Editions",
|
|
5881
|
+
"fileMatch": [
|
|
5882
|
+
"venvplus.yaml",
|
|
5883
|
+
"*.venvplus.yaml",
|
|
5884
|
+
"venvplus.yml",
|
|
5885
|
+
"*.venvplus.yml",
|
|
5886
|
+
"venvplus.json",
|
|
5887
|
+
"*.venvplus.json"
|
|
5888
|
+
],
|
|
5889
|
+
"url": "https://json.schemastore.org/venvplus-schema-v1.0.0.json",
|
|
5890
|
+
"versions": {
|
|
5891
|
+
"1.0.0": "https://json.schemastore.org/venvplus-schema-v1.0.0.json"
|
|
5892
|
+
}
|
|
5893
|
+
},
|
|
5894
|
+
{
|
|
5895
|
+
"name": "venvplus-basic.yaml",
|
|
5896
|
+
"description": "venvplus-basic settings of Vector Test Unit Runner",
|
|
5897
|
+
"fileMatch": [
|
|
5898
|
+
"venvplus-basic.yaml",
|
|
5899
|
+
"*.venvplus-basic.yaml",
|
|
5900
|
+
"venvplus-basic.yml",
|
|
5901
|
+
"*.venvplus-basic.yml",
|
|
5902
|
+
"venvplus-basic.json",
|
|
5903
|
+
"*.venvplus-basic.json"
|
|
5904
|
+
],
|
|
5905
|
+
"url": "https://json.schemastore.org/venvplus-basic-schema-v1.0.0.json",
|
|
5906
|
+
"versions": {
|
|
5907
|
+
"1.0.0": "https://json.schemastore.org/venvplus-basic-schema-v1.0.0.json"
|
|
5729
5908
|
}
|
|
5730
5909
|
},
|
|
5731
5910
|
{
|
|
@@ -5819,13 +5998,14 @@
|
|
|
5819
5998
|
"name": "vtesttree.yaml",
|
|
5820
5999
|
"description": "Vector test execution tree description",
|
|
5821
6000
|
"fileMatch": ["*.vtesttree.yaml", "*.vtesttree.yml", "*.vtesttree.json"],
|
|
5822
|
-
"url": "https://json.schemastore.org/vtesttree-schema-v2.
|
|
6001
|
+
"url": "https://json.schemastore.org/vtesttree-schema-v2.4.0.json",
|
|
5823
6002
|
"versions": {
|
|
5824
6003
|
"1.0.0": "https://json.schemastore.org/vtesttree-schema-v1.0.0.json",
|
|
5825
6004
|
"2.0.0": "https://json.schemastore.org/vtesttree-schema-v2.0.0.json",
|
|
5826
6005
|
"2.1.0": "https://json.schemastore.org/vtesttree-schema-v2.1.0.json",
|
|
5827
6006
|
"2.2.0": "https://json.schemastore.org/vtesttree-schema-v2.2.0.json",
|
|
5828
|
-
"2.3.0": "https://json.schemastore.org/vtesttree-schema-v2.3.0.json"
|
|
6007
|
+
"2.3.0": "https://json.schemastore.org/vtesttree-schema-v2.3.0.json",
|
|
6008
|
+
"2.4.0": "https://json.schemastore.org/vtesttree-schema-v2.4.0.json"
|
|
5829
6009
|
}
|
|
5830
6010
|
},
|
|
5831
6011
|
{
|
|
@@ -6165,7 +6345,7 @@
|
|
|
6165
6345
|
"name": "Hatch",
|
|
6166
6346
|
"description": "Python package build tool",
|
|
6167
6347
|
"fileMatch": ["hatch.toml"],
|
|
6168
|
-
"url": "https://
|
|
6348
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/hatch.json"
|
|
6169
6349
|
},
|
|
6170
6350
|
{
|
|
6171
6351
|
"name": "helmfile",
|
|
@@ -7005,7 +7185,7 @@
|
|
|
7005
7185
|
"name": "Pantsbuild",
|
|
7006
7186
|
"description": "Pantsbuild configuration file",
|
|
7007
7187
|
"fileMatch": ["pants*.toml"],
|
|
7008
|
-
"url": "https://json.schemastore.org/pantsbuild-2.
|
|
7188
|
+
"url": "https://json.schemastore.org/pantsbuild-2.26.0.json",
|
|
7009
7189
|
"versions": {
|
|
7010
7190
|
"2.14.0": "https://json.schemastore.org/pantsbuild-2.14.0.json",
|
|
7011
7191
|
"2.15.0": "https://json.schemastore.org/pantsbuild-2.15.0.json",
|
|
@@ -7015,7 +7195,8 @@
|
|
|
7015
7195
|
"2.19.0": "https://json.schemastore.org/pantsbuild-2.19.0.json",
|
|
7016
7196
|
"2.20.0": "https://json.schemastore.org/pantsbuild-2.20.0.json",
|
|
7017
7197
|
"2.21.0": "https://json.schemastore.org/pantsbuild-2.21.0.json",
|
|
7018
|
-
"2.24.0": "https://json.schemastore.org/pantsbuild-2.24.0.json"
|
|
7198
|
+
"2.24.0": "https://json.schemastore.org/pantsbuild-2.24.0.json",
|
|
7199
|
+
"2.26.0": "https://json.schemastore.org/pantsbuild-2.26.0.json"
|
|
7019
7200
|
}
|
|
7020
7201
|
},
|
|
7021
7202
|
{
|
|
@@ -7185,6 +7366,12 @@
|
|
|
7185
7366
|
"fileMatch": ["tunnelhub.yml", "tunnelhub.yaml"],
|
|
7186
7367
|
"url": "https://json.schemastore.org/tunnelhub.json"
|
|
7187
7368
|
},
|
|
7369
|
+
{
|
|
7370
|
+
"name": "ty",
|
|
7371
|
+
"description": "ty, a fast Python type checker",
|
|
7372
|
+
"fileMatch": ["ty.toml"],
|
|
7373
|
+
"url": "https://json.schemastore.org/ty.json"
|
|
7374
|
+
},
|
|
7188
7375
|
{
|
|
7189
7376
|
"name": "Problem object RFC9457",
|
|
7190
7377
|
"description": "Problem object per RFC 9457",
|
|
@@ -7224,17 +7411,21 @@
|
|
|
7224
7411
|
"url": "https://json.schemastore.org/minecraft-custom-main-menu-mod.json"
|
|
7225
7412
|
},
|
|
7226
7413
|
{
|
|
7227
|
-
"name": "rivet.yaml",
|
|
7228
|
-
"description": "Rivet game configuration file",
|
|
7414
|
+
"name": "rivet.yaml (legacy)",
|
|
7415
|
+
"description": "Legacy Rivet game configuration file",
|
|
7416
|
+
"fileMatch": ["rivet.yaml", "rivet.*.yaml", "rivet.toml", "rivet.*.toml"],
|
|
7417
|
+
"url": "https://rivet.gg/rivet.schema.json"
|
|
7418
|
+
},
|
|
7419
|
+
{
|
|
7420
|
+
"name": "rivet.json",
|
|
7421
|
+
"description": "Rivet configuration file",
|
|
7229
7422
|
"fileMatch": [
|
|
7230
|
-
"rivet.yaml",
|
|
7231
|
-
"rivet.*.yaml",
|
|
7232
|
-
"rivet.toml",
|
|
7233
|
-
"rivet.*.toml",
|
|
7234
7423
|
"rivet.json",
|
|
7235
|
-
"rivet.*.json"
|
|
7424
|
+
"rivet.*.json",
|
|
7425
|
+
"rivet.jsonc",
|
|
7426
|
+
"rivet.*.jsonc"
|
|
7236
7427
|
],
|
|
7237
|
-
"url": "https://rivet
|
|
7428
|
+
"url": "https://raw.githubusercontent.com/rivet-gg/rivet/refs/heads/main/site/src/content/docs/toolchain-spec.json"
|
|
7238
7429
|
},
|
|
7239
7430
|
{
|
|
7240
7431
|
"name": "nixd configuration",
|
|
@@ -7273,7 +7464,7 @@
|
|
|
7273
7464
|
"name": "GitLab Agent for Kubernetes configuration",
|
|
7274
7465
|
"description": "GitLab Agent for Kubernetes configuration file",
|
|
7275
7466
|
"fileMatch": ["**/.gitlab/agents/*/config.yaml"],
|
|
7276
|
-
"url": "https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent/-/raw/master/pkg/agentcfg/agentcfg_schemas/ConfigurationFile.json"
|
|
7467
|
+
"url": "https://gitlab.com/gitlab-org/cluster-integration/gitlab-agent/-/raw/master/pkg/agentcfg/agentcfg_schemas/gitlab.agent.agentcfg.ConfigurationFile.jsonschema.bundle.json"
|
|
7277
7468
|
},
|
|
7278
7469
|
{
|
|
7279
7470
|
"name": "IVMS101 by CODE Protocol",
|
|
@@ -7449,15 +7640,20 @@
|
|
|
7449
7640
|
"url": "https://json.schemastore.org/any.json"
|
|
7450
7641
|
},
|
|
7451
7642
|
{
|
|
7452
|
-
"name": "
|
|
7453
|
-
"description": "
|
|
7454
|
-
"fileMatch": ["zerops.yml"],
|
|
7643
|
+
"name": "Zerops.io config",
|
|
7644
|
+
"description": "Zerops.io (https://zerops.io) configuration YAML file, for setting how to build and deploy your services",
|
|
7645
|
+
"fileMatch": ["zerops.yaml", "zerops.yml"],
|
|
7455
7646
|
"url": "https://api.app-prg1.zerops.io/api/rest/public/settings/zerops-yml-json-schema.json"
|
|
7456
7647
|
},
|
|
7457
7648
|
{
|
|
7458
|
-
"name": "
|
|
7459
|
-
"description": "
|
|
7460
|
-
"fileMatch": [
|
|
7649
|
+
"name": "Zerops.io import",
|
|
7650
|
+
"description": "Zerops.io (https://zerops.io) infrastructure-as-code import YAML file",
|
|
7651
|
+
"fileMatch": [
|
|
7652
|
+
"zerops-import.yaml",
|
|
7653
|
+
"zerops-*-import.yaml",
|
|
7654
|
+
"zerops-import.yml",
|
|
7655
|
+
"zerops-*-import.yml"
|
|
7656
|
+
],
|
|
7461
7657
|
"url": "https://api.app-prg1.zerops.io/api/rest/public/settings/import-project-yml-json-schema.json"
|
|
7462
7658
|
},
|
|
7463
7659
|
{
|
|
@@ -7774,6 +7970,12 @@
|
|
|
7774
7970
|
"fileMatch": ["**/*Trident.toml", "**/*.Trident.toml"],
|
|
7775
7971
|
"url": "https://raw.githubusercontent.com/Ackee-Blockchain/trident/refs/heads/master/trident-spec.json"
|
|
7776
7972
|
},
|
|
7973
|
+
{
|
|
7974
|
+
"name": "Unified Tenant Configuration Management (UTCM) Monitor",
|
|
7975
|
+
"description": "Configuration file for the Unified Tenant Configuration Management (UTCM) Monitor",
|
|
7976
|
+
"fileMatch": ["*.utcm-monitor.json"],
|
|
7977
|
+
"url": "https://json.schemastore.org/utcm-monitor.json"
|
|
7978
|
+
},
|
|
7777
7979
|
{
|
|
7778
7980
|
"name": "Restate",
|
|
7779
7981
|
"description": "Restate Server configuration file",
|
|
@@ -7851,7 +8053,7 @@
|
|
|
7851
8053
|
"name": "Python script metadata",
|
|
7852
8054
|
"description": "Metadata of a Python script, as defined by PEP 723",
|
|
7853
8055
|
"fileMatch": [],
|
|
7854
|
-
"url": "https://
|
|
8056
|
+
"url": "https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/pep-723.json"
|
|
7855
8057
|
},
|
|
7856
8058
|
{
|
|
7857
8059
|
"name": "vtcfg",
|
|
@@ -7886,7 +8088,11 @@
|
|
|
7886
8088
|
{
|
|
7887
8089
|
"name": "Contextive Glossary",
|
|
7888
8090
|
"description": "A Contextive Domain Language Glossary",
|
|
7889
|
-
"fileMatch": [
|
|
8091
|
+
"fileMatch": [
|
|
8092
|
+
"**/.contextive/definitions.yml",
|
|
8093
|
+
"*.glossary.yml",
|
|
8094
|
+
"*.glossary.yaml"
|
|
8095
|
+
],
|
|
7890
8096
|
"url": "https://json.schemastore.org/contextive-glossary.json"
|
|
7891
8097
|
},
|
|
7892
8098
|
{
|
|
@@ -7900,6 +8106,77 @@
|
|
|
7900
8106
|
"description": "PEP 751 lock file",
|
|
7901
8107
|
"fileMatch": ["pylock.toml", "pylock.*.toml"],
|
|
7902
8108
|
"url": "https://json.schemastore.org/pylock.json"
|
|
8109
|
+
},
|
|
8110
|
+
{
|
|
8111
|
+
"name": "Stylua Config",
|
|
8112
|
+
"description": "Stylua configuration",
|
|
8113
|
+
"fileMatch": [".stylua.toml", "stylua.toml"],
|
|
8114
|
+
"url": "https://json.schemastore.org/stylua.json"
|
|
8115
|
+
},
|
|
8116
|
+
{
|
|
8117
|
+
"name": "Taplo",
|
|
8118
|
+
"description": "Taplo configuration file",
|
|
8119
|
+
"fileMatch": [".taplo.toml", "taplo.toml"],
|
|
8120
|
+
"url": "https://json.schemastore.org/taplo.json"
|
|
8121
|
+
},
|
|
8122
|
+
{
|
|
8123
|
+
"name": "Aider",
|
|
8124
|
+
"description": "Aider configuration file",
|
|
8125
|
+
"fileMatch": [".aider.conf.yml"],
|
|
8126
|
+
"url": "https://json.schemastore.org/aider-0.82.json"
|
|
8127
|
+
},
|
|
8128
|
+
{
|
|
8129
|
+
"name": "CDK Environment Manager, environment definition",
|
|
8130
|
+
"description": "ti&m CDK Environment Manager environment definition file",
|
|
8131
|
+
"fileMatch": [
|
|
8132
|
+
"**/environment-definition.json",
|
|
8133
|
+
"**/environment-definition.yaml",
|
|
8134
|
+
"**/environment-definition.yml"
|
|
8135
|
+
],
|
|
8136
|
+
"url": "https://json.schemastore.org/ti8m-cdk-environment-definition.json"
|
|
8137
|
+
},
|
|
8138
|
+
{
|
|
8139
|
+
"name": "CDK Environment Manager, concrete environments definition",
|
|
8140
|
+
"description": "ti&m CDK Environment Manager concrete environments definition file",
|
|
8141
|
+
"fileMatch": [
|
|
8142
|
+
"**/concrete-environments.json",
|
|
8143
|
+
"**/concrete-environments.yaml",
|
|
8144
|
+
"**/concrete-environments.yml"
|
|
8145
|
+
],
|
|
8146
|
+
"url": "https://json.schemastore.org/ti8m-cdk-concrete-environments.json"
|
|
8147
|
+
},
|
|
8148
|
+
{
|
|
8149
|
+
"name": "CDK Environment Manager, concrete environment configuration",
|
|
8150
|
+
"description": "ti&m CDK Environment Manager concrete environment configuration file",
|
|
8151
|
+
"fileMatch": [
|
|
8152
|
+
"**/environment_config/*.json",
|
|
8153
|
+
"**/environment_config/*.yaml",
|
|
8154
|
+
"**/environment_config/*.yml"
|
|
8155
|
+
],
|
|
8156
|
+
"url": "https://json.schemastore.org/ti8m-cdk-concrete-environment-config.json"
|
|
8157
|
+
},
|
|
8158
|
+
{
|
|
8159
|
+
"name": "tm_devices configuration file",
|
|
8160
|
+
"description": "Definition of the configuration file of the tm_devices Python package. Documentation: https://tm-devices.readthedocs.io/stable/configuration/",
|
|
8161
|
+
"fileMatch": ["tm_devices.yml", "tm_devices.yaml", "tm_devices.toml"],
|
|
8162
|
+
"url": "https://raw.githubusercontent.com/tektronix/tm_devices/main/src/tm_devices/tm_devices_config_schema.json"
|
|
8163
|
+
},
|
|
8164
|
+
{
|
|
8165
|
+
"name": "OpenStatus",
|
|
8166
|
+
"description": "OpenStatus configuration file",
|
|
8167
|
+
"fileMatch": [
|
|
8168
|
+
"openstatus.json",
|
|
8169
|
+
"openstatus.yml",
|
|
8170
|
+
"openstatus.yaml",
|
|
8171
|
+
"openstatus.toml"
|
|
8172
|
+
],
|
|
8173
|
+
"url": "https://github.com/openstatusHQ/json-schema/releases/download/v1.0.0/schema.json"
|
|
8174
|
+
},
|
|
8175
|
+
{
|
|
8176
|
+
"name": "Power Pages Configuration",
|
|
8177
|
+
"description": "Power Pages configuration file for Bring Your Own Code (BYOC) sites",
|
|
8178
|
+
"fileMatch": ["powerpages.config.json"],
|
|
8179
|
+
"url": "https://json.schemastore.org/powerpages.config.json"
|
|
7903
8180
|
}
|
|
7904
8181
|
]
|
|
7905
8182
|
}
|