-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 KB
/
package.json
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
41
42
43
44
45
46
{
"name": "sqon",
"displayName": "SQON (Structure Query Object Notation)",
"description": "SQON is a custom database format designed to provide a structured and intuitive representation of relational data. Inspired by the simplicity of JSON and the structure of SQL, SQON combines familiar concepts from both to offer a versatile and expressive way of defining database schemas and data.",
"version": "1.0.0",
"license": "MIT",
"engines": {
"vscode": "^1.88.0"
},
"icon": "./icons/extension-icon.png",
"bugs": {
"url": "https://github.com/jedi-studio/SQON.vscode/issues"
},
"homepage": "https://versedb.jedi-studio.com",
"repository": {
"type": "git",
"url": "git+https://github.com/jedi-studio/SQON.vscode.git"
},
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"languages": [{
"id": "sqon",
"aliases": ["Structure Query Object Notation", "sqon"],
"extensions": [".sqon"],
"configuration": "./language-configuration.json",
"icon": {
"light": "./icons/sqon-light.svg",
"dark": "./icons/sqon-dark.svg"
}
}],
"grammars": [{
"language": "sqon",
"scopeName": "*.sqon",
"path": "./syntaxes/sqon.tmLanguage.json"
}],
"snippets": [
{
"language": "sqon",
"path": "./snippets/snippets.code-snippets"
}
]
}
}