Bob/bob-language-extension/package.json
Bobby Lucero 72a1b82b43 More things
- Add while, for, and do-while loops with break/continue
- Implement assignment statements (prevents if(x=10) bugs)
- Keep assignment expressions only for for-loop clauses
- Fix critical memory management bug (dangling pointers in cleanup)
- Add automatic memory cleanup with conservative reference counting
- Consolidate documentation into single reference file
- Add comprehensive test coverage for all loop types and edge cases
- VSCode extension for bob highlighting and snippets
2025-08-06 00:57:36 -04:00

74 lines
1.5 KiB
JSON

{
"name": "bob-language",
"displayName": "Bob Language",
"description": "Syntax highlighting and language support for the Bob programming language",
"version": "0.1.2",
"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"
}
}