@codingame/monaco-vscode-json-language-features-default-extension 25.1.2 → 26.0.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/index.js +9 -9
- package/package.json +2 -2
- package/resources/jsonClientMain.js +1 -1
- package/resources/jsonClientMain.js.map +1 -1
- package/resources/jsonServerMain.js +1 -1
- package/resources/jsonServerMain.js.map +1 -1
- package/resources/package.json +1 -1
- package/resources/package.nls.json +1 -1
- package/resources/package2.json +1 -1
package/index.js
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { registerExtension } from '@codingame/monaco-vscode-api/extensions';
|
|
2
2
|
|
|
3
|
-
var manifest = {name:"json-language-features",displayName:"%displayName%",description:"%description%",version:"1.0.0",publisher:"vscode",license:"MIT",aiKey:"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",engines:{vscode:"^1.77.0"},enabledApiProposals:["extensionsAny"],icon:"icons/json.png",activationEvents:["onLanguage:json","onLanguage:jsonc","onLanguage:snippets","onCommand:json.validate"],main:undefined,browser:"./client/dist/browser/jsonClientMain",capabilities:{virtualWorkspaces:true,untrustedWorkspaces:{supported:"limited",description:"%json.workspaceTrust%"}},categories:["Programming Languages"],contributes:{configuration:{id:"json",order:20,type:"object",title:"JSON",properties:{"json.schemas":{type:"array",scope:"resource",description:"%json.schemas.desc%",items:{type:"object","default":{fileMatch:["/myfile"],url:"schemaURL"},properties:{url:{type:"string","default":"/user.schema.json",description:"%json.schemas.url.desc%"},fileMatch:{type:"array",items:{type:"string","default":"MyFile.json",description:"%json.schemas.fileMatch.item.desc%"},minItems:1,description:"%json.schemas.fileMatch.desc%"},schema:{$ref:"http://json-schema.org/draft-07/schema#",description:"%json.schemas.schema.desc%"}}}},"json.validate.enable":{type:"boolean",scope:"window","default":true,description:"%json.validate.enable.desc%"},"json.format.enable":{type:"boolean",scope:"window","default":true,description:"%json.format.enable.desc%"},"json.format.keepLines":{type:"boolean",scope:"window","default":false,description:"%json.format.keepLines.desc%"},"json.trace.server":{type:"string",scope:"window","enum":["off","messages","verbose"],"default":"off",description:"%json.tracing.desc%"},"json.colorDecorators.enable":{type:"boolean",scope:"window","default":true,description:"%json.colorDecorators.enable.desc%",deprecationMessage:"%json.colorDecorators.enable.deprecationMessage%"},"json.maxItemsComputed":{type:"number","default":5000,description:"%json.maxItemsComputed.desc%"},"json.schemaDownload.enable":{type:"boolean","default":true,description:"%json.enableSchemaDownload.desc%",tags:["usesOnlineServices"]}}},configurationDefaults:{"[json]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"},"[jsonc]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"},"[snippets]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"}},jsonValidation:[{fileMatch:"*.schema.json",url:"http://json-schema.org/draft-07/schema#"}],commands:[{command:"json.clearCache",title:"%json.command.clearCache%",category:"JSON"},{command:"json.sort",title:"%json.command.sort%",category:"JSON"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"}};
|
|
3
|
+
var manifest = {name:"json-language-features",displayName:"%displayName%",description:"%description%",version:"1.0.0",publisher:"vscode",license:"MIT",aiKey:"0c6ae279ed8443289764825290e4f9e2-1a736e7c-1324-4338-be46-fc2a58ae4d14-7255",engines:{vscode:"^1.77.0"},enabledApiProposals:["extensionsAny"],icon:"icons/json.png",activationEvents:["onLanguage:json","onLanguage:jsonc","onLanguage:snippets","onCommand:json.validate"],main:undefined,browser:"./client/dist/browser/jsonClientMain",capabilities:{virtualWorkspaces:true,untrustedWorkspaces:{supported:"limited",description:"%json.workspaceTrust%"}},categories:["Programming Languages"],contributes:{configuration:{id:"json",order:20,type:"object",title:"JSON",properties:{"json.schemas":{type:"array",scope:"resource",description:"%json.schemas.desc%",items:{type:"object","default":{fileMatch:["/myfile"],url:"schemaURL"},properties:{url:{type:"string","default":"/user.schema.json",description:"%json.schemas.url.desc%"},fileMatch:{type:"array",items:{type:"string","default":"MyFile.json",description:"%json.schemas.fileMatch.item.desc%"},minItems:1,description:"%json.schemas.fileMatch.desc%"},schema:{$ref:"http://json-schema.org/draft-07/schema#",description:"%json.schemas.schema.desc%"}}}},"json.validate.enable":{type:"boolean",scope:"window","default":true,description:"%json.validate.enable.desc%"},"json.format.enable":{type:"boolean",scope:"window","default":true,description:"%json.format.enable.desc%"},"json.format.keepLines":{type:"boolean",scope:"window","default":false,description:"%json.format.keepLines.desc%"},"json.trace.server":{type:"string",scope:"window","enum":["off","messages","verbose"],"default":"off",description:"%json.tracing.desc%"},"json.colorDecorators.enable":{type:"boolean",scope:"window","default":true,description:"%json.colorDecorators.enable.desc%",deprecationMessage:"%json.colorDecorators.enable.deprecationMessage%"},"json.maxItemsComputed":{type:"number","default":5000,description:"%json.maxItemsComputed.desc%"},"json.schemaDownload.enable":{type:"boolean","default":true,description:"%json.enableSchemaDownload.desc%",tags:["usesOnlineServices"]},"json.schemaDownload.trustedDomains":{type:"object","default":{"https://schemastore.azurewebsites.net/":true,"https://raw.githubusercontent.com/":true,"https://www.schemastore.org/":true,"https://json.schemastore.org/":true,"https://json-schema.org/":true},additionalProperties:{type:"boolean"},description:"%json.schemaDownload.trustedDomains.desc%",tags:["usesOnlineServices"]}}},configurationDefaults:{"[json]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"},"[jsonc]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"},"[snippets]":{"editor.quickSuggestions":{strings:true},"editor.suggest.insertMode":"replace"}},jsonValidation:[{fileMatch:"*.schema.json",url:"http://json-schema.org/draft-07/schema#"}],commands:[{command:"json.clearCache",title:"%json.command.clearCache%",category:"JSON"},{command:"json.sort",title:"%json.command.sort%",category:"JSON"}]},repository:{type:"git",url:"https://github.com/microsoft/vscode.git"}};
|
|
4
4
|
|
|
5
5
|
const { registerFileUrl, whenReady } = registerExtension(manifest, undefined, {"system":true,"readmePath":"README.md"});
|
|
6
6
|
registerFileUrl('README.md', new URL('./resources/README.md', import.meta.url).toString(), {"mimeType":"text/markdown","size":284});
|
|
7
|
-
registerFileUrl('client/dist/browser/jsonClientMain', new URL('./resources/jsonClientMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":
|
|
8
|
-
registerFileUrl('client/dist/browser/jsonClientMain.js', new URL('./resources/jsonClientMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":
|
|
9
|
-
registerFileUrl('client/dist/browser/jsonClientMain.js.map', new URL('./resources/jsonClientMain.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":
|
|
7
|
+
registerFileUrl('client/dist/browser/jsonClientMain', new URL('./resources/jsonClientMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":415645});
|
|
8
|
+
registerFileUrl('client/dist/browser/jsonClientMain.js', new URL('./resources/jsonClientMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":415645});
|
|
9
|
+
registerFileUrl('client/dist/browser/jsonClientMain.js.map', new URL('./resources/jsonClientMain.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":1589884});
|
|
10
10
|
registerFileUrl('icons/json.png', new URL('./resources/json.png', import.meta.url).toString(), {"mimeType":"image/png","size":4433});
|
|
11
|
-
registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":
|
|
12
|
-
registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":
|
|
13
|
-
registerFileUrl('server/dist/browser/jsonServerMain', new URL('./resources/jsonServerMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":
|
|
14
|
-
registerFileUrl('server/dist/browser/jsonServerMain.js', new URL('./resources/jsonServerMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":
|
|
15
|
-
registerFileUrl('server/dist/browser/jsonServerMain.js.map', new URL('./resources/jsonServerMain.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":
|
|
11
|
+
registerFileUrl('package.json', new URL('./resources/package.json', import.meta.url).toString(), {"mimeType":"application/json","size":3345});
|
|
12
|
+
registerFileUrl('package.nls.json', new URL('./resources/package.nls.json', import.meta.url).toString(), {"mimeType":"application/json","size":2380});
|
|
13
|
+
registerFileUrl('server/dist/browser/jsonServerMain', new URL('./resources/jsonServerMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":340812});
|
|
14
|
+
registerFileUrl('server/dist/browser/jsonServerMain.js', new URL('./resources/jsonServerMain.js', import.meta.url).toString(), {"mimeType":"text/javascript","size":340812});
|
|
15
|
+
registerFileUrl('server/dist/browser/jsonServerMain.js.map', new URL('./resources/jsonServerMain.js.map', import.meta.url).toString(), {"mimeType":"application/json","size":1399242});
|
|
16
16
|
registerFileUrl('server/package.json', new URL('./resources/package2.json', import.meta.url).toString(), {"mimeType":"application/json","size":1184});
|
|
17
17
|
|
|
18
18
|
export { whenReady };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-json-language-features-default-extension",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "26.0.1",
|
|
4
4
|
"keywords": [],
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "CodinGame",
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"module": "index.js",
|
|
19
19
|
"types": "index.d.ts",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@codingame/monaco-vscode-api": "
|
|
21
|
+
"@codingame/monaco-vscode-api": "26.0.1"
|
|
22
22
|
}
|
|
23
23
|
}
|