68 lines
1.3 KiB
JSON
68 lines
1.3 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.0",
|
|
"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"
|
|
}
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"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"
|
|
}
|
|
} |