hblang-vscode/package.json
2024-11-08 21:50:37 +00:00

79 lines
1.7 KiB
JSON

{
"name": "hblang",
"repository": {
"url": "https://git.ablecorp.us/koniifer/hblang-vscode"
},
"publisher": "koniifer",
"displayName": "hblang",
"description": "Syntax highlighter and formatter for holey-bytes lang",
"version": "0.2.2",
"engines": {
"vscode": "^1.75.0"
},
"main": "./out/main.js",
"categories": [
"Programming Languages",
"Formatters"
],
"activationEvents": [
"onCommand:extension.formatDocument"
],
"contributes": {
"languages": [
{
"id": "hblang",
"aliases": [
"hblang"
],
"extensions": [
".hb"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hblang",
"scopeName": "source.hblang",
"path": "./syntaxes/hblang.tmLanguage.json"
}
],
"formatters": [
{
"language": "hblang",
"provider": {
"provideDocumentFormattingEdits": {
"command": "editor.action.formatDocument"
}
}
}
],
"configuration": {
"title": "hblang",
"properties": {
"hblang.compilerPath": {
"type": "string",
"default": "PATH",
"description": "Set the optional path for the hbc compiler. If set to 'PATH', it will rely on the system to provide hbc.",
"scope": "machine-overridable"
}
}
}
},
"scripts": {
"vscode:prepublish": "webpack",
"compile": "webpack --mode production",
"watch": "webpack --watch --mode development"
},
"devDependencies": {
"@types/vscode": "^1.75.0",
"os-browserify": "^0.3.0",
"path-browserify": "^1.0.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.5.1",
"typescript": "^4.0.0",
"vscode": "^1.1.37",
"webpack": "^5.0.0",
"webpack-cli": "^4.10.0"
}
}