Bob/bob-language-extension/package.json
Bobby Lucero 17c15e5bad Various changes
Arrays, loops, ternary, and other major features. Check doc
2025-08-06 21:42:09 -04:00

74 lines
1.6 KiB
JSON

{
"name": "bob-language",
"displayName": "Bob Language",
"description": "Syntax highlighting and language support for the Bob programming language - featuring arrays, auto-truncating float indices, increment/decrement operators, cross-type comparisons, and comprehensive built-in functions",
"version": "0.3.0",
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"keywords": [
"bob",
"programming",
"language",
"syntax",
"highlighting"
],
"publisher": "bob-lang",
"repository": {
"type": "git",
"url": "https://github.com/bob-lang/bob-vscode-extension"
},
"license": "MIT",
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:bob"
],
"contributes": {
"languages": [
{
"id": "bob",
"aliases": [
"Bob",
"bob"
],
"extensions": [
".bob"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "bob",
"scopeName": "source.bob",
"path": "./syntaxes/bob.tmLanguage.json"
}
],
"snippets": [
{
"language": "bob",
"path": "./snippets/bob.json"
}
],
"themes": [
{
"label": "Bob Dark",
"uiTheme": "vs-dark",
"path": "./themes/bob-dark.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/vscode": "^1.60.0",
"@types/node": "^16.0.0",
"typescript": "^4.5.0"
}
}