-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 790 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "jschema",
"displayName": "JSchema",
"description": "JSchema support for Visual Studio Code",
"publisher": "RelogicLabs",
"version": "0.5.0",
"license": "AGPL-3.0",
"icon": "images/jschema-icon.png",
"repository": {
"type": "git",
"url": "https://github.com/relogiclabs/JSchema-VSCode"
},
"engines": {
"vscode": "^1.88.0"
},
"categories": [
"Other"
],
"keywords": [
"json schema",
"schema",
"json",
"validation",
"assert",
"test"
],
"contributes": {
"languages": [{
"id": "jschema",
"aliases": ["JSchema", "jschema"],
"extensions": [".jscm"],
"configuration": "./jschema-configuration.json"
}],
"grammars": [{
"language": "jschema",
"scopeName": "source.jschema",
"path": "./syntaxes/jschema.tmGrammar.json"
}]
}
}