Files
bf-server/package.json

113 lines
2.4 KiB
JSON
Raw Normal View History

2021-04-09 23:15:58 +05:30
{
"name": "bfc-server",
"displayName": "BF Language",
2021-04-10 09:54:46 +05:30
"description": "BF Syntax Support",
"author": "Atreya Bain",
2021-04-09 23:15:58 +05:30
"license": "MIT",
2021-04-10 09:54:46 +05:30
"publisher": "atreyabain",
2024-01-02 15:52:26 +05:30
"version": "0.0.5",
"icon": "assets/128.png",
2021-04-09 23:15:58 +05:30
"categories": [],
"keywords": [
2021-04-09 23:40:13 +05:30
"multi-root ready",
"brainfuck",
"branflakes"
2021-04-09 23:15:58 +05:30
],
"prettier": {
2021-04-09 23:15:58 +05:30
"tabWidth": 4,
"semi": true,
"arrowParens": "avoid",
"singleQuote": true
},
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:bf"
],
2021-04-09 23:22:24 +05:30
"repository": {
"type": "git",
"url": "https://github.com/chrisvrose/bf-server"
2021-04-09 23:22:24 +05:30
},
"main": "./client/dist/extension",
2021-04-09 23:15:58 +05:30
"contributes": {
"languages": [
{
"id": "bf",
"aliases": [
"Branflakes",
"Brainfuck",
"BF",
"Brainfsck"
],
"extensions": [
".bf",
".bfsck",
".brainfuck"
],
"configuration": "./bf-configuration.json"
}
],
"grammars": [
{
"language": "bf",
"scopeName": "source.bf",
"path": "./syntaxes/bf.tmLanguage.json"
}
],
"commands": [
{
"command": "bf.execute",
"title": "BF: Execute",
"when": "editorLangId == bf",
"enablement": "editorLangId == bf"
}
],
2021-04-09 23:15:58 +05:30
"configuration": {
"type": "object",
"title": "Configurable properties",
"properties": {
"languageServerExample.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 5,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerExample.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VS Code and the language server."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "concurrently \"npm run webpack-prod --prefix client\" \"npm run webpack-prod --prefix server \"",
"_compile": "tsc -b",
2021-04-09 23:15:58 +05:30
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"private": true,
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.39",
"@typescript-eslint/parser": "^2.33.0",
"eslint": "^6.4.0",
"mocha": "^6.2.2",
"ts-loader": "^8.1.0",
"typescript": "^3.9.2",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"concurrently": "^6.0.2"
2021-04-09 23:15:58 +05:30
}
}