Skip to content

Commit

Permalink
Update package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
omar-perpetuallabs committed Jul 13, 2023
1 parent c6a269e commit d3a1222
Showing 1 changed file with 93 additions and 1 deletion.
94 changes: 93 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,98 @@
"*"
],
"browser": "./extension/dist/browserMain",
"contributes": {
"grammars": [
{
"language": "oml",
"scopeName": "source.oml",
"path": "./syntaxes/oml.tmLanguage.json"
},
{
"language": "sparql",
"scopeName": "source.sparql",
"path": "./syntaxes/sparql.tmLanguage.json"
}
],
"languages": [
{
"id": "oml",
"aliases": [
"oml",
"OML"
],
"extensions": [
".oml"
],
"configuration": "./syntaxes/oml-configuration.json"
},
{
"id": "sparql",
"aliases": [
"sparql",
"SPARQL"
],
"extensions": [
".sparql"
],
"configuration": "./syntaxes/sparql-configuration.json"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "gitworks-workbench-workspace",
"icon": "$(repo)",
"title": "GitWorks Workspace"
},
{
"id": "gitworks-workbench-ontology",
"icon": "$(type-hierarchy)",
"title": "GitWorks Ontology"
},
{
"id": "gitworks-workbench-automation",
"icon": "$(server-process)",
"title": "GitWorks Automation"
},
{
"id": "gitworks-workbench-commons",
"icon": "$(package)",
"title": "GitWorks Commons"
}
]
},
"views": {
"gitworks-workbench-workspace": [
{
"id": "gitworks-workbench-workspace-explorer",
"name": "Explorer"
}
],
"gitworks-workbench-ontology": [
{
"id": "gitworks-workbench-ontology-vocabularies",
"name": "Vocabularies"
},
{
"id": "gitworks-workbench-ontology-structure",
"name": "Structure"
}
],
"gitworks-workbench-automation": [
{
"id": "gitworks-workbench-automation-tasks",
"name": "Tasks"
}
],
"gitworks-workbench-commons": [
{
"id": "gitworks-workbench-commons-search",
"name": "Search"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "webpack",
Expand All @@ -38,4 +130,4 @@
"dependencies": {
"process": "^0.11.10"
}
}
}

0 comments on commit d3a1222

Please sign in to comment.