ox

The Ox programming language, compiler and tools (WIP)
Log | Files | Refs | README | LICENSE

package.json (537B)


      1 {
      2   "name": "ox-syntax",
      3   "displayName": "Ox Syntax",
      4   "description": "Syntax highlighting for the Ox language",
      5   "version": "0.0.3",
      6   "engines": {
      7     "vscode": "^1.50.0"
      8   },
      9   "contributes": {
     10     "languages": [
     11       {
     12         "id": "ox",
     13         "aliases": ["Ox", "ox"],
     14         "extensions": [".ox"],
     15         "configuration": "./language-configuration.json"
     16       }
     17     ],
     18     "grammars": [
     19       {
     20         "language": "ox",
     21         "scopeName": "source.ox",
     22         "path": "./syntaxes/ox.tmLanguage.json"
     23       }
     24     ]
     25   }
     26 }