mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
26 lines
568 B
JSON
26 lines
568 B
JSON
{
|
|
"name": "toy-syntax-highlighting",
|
|
"displayName": "Toy Syntax Highlighting",
|
|
"description": "A toy programming language",
|
|
"version": "0.0.1",
|
|
"engines": {
|
|
"vscode": "^1.73.0"
|
|
},
|
|
"categories": [
|
|
"Programming Languages"
|
|
],
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "toy",
|
|
"aliases": ["Toy", "toy"],
|
|
"extensions": [".toy"],
|
|
"configuration": "./language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "toy",
|
|
"scopeName": "source.toy",
|
|
"path": "./syntaxes/toy.tmLanguage.json"
|
|
}]
|
|
}
|
|
}
|