source: tools/vscode/uwaterloo.cforall-0.1.0/package.json @ b52abe0

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since b52abe0 was b52abe0, checked in by Thierry Delisle <tdelisle@…>, 4 years ago

Implemented basic language server with no capabilities

  • Property mode set to 100644
File size: 1.2 KB
Line 
1{
2        "name": "cforall",
3        "version": "0.1.0",
4        "displayName": "C∀ (C-for-all) Language Support",
5        "description": "Cforall - colorizer, grammar and snippets.",
6        "publisher": "uwaterloo",
7        "license": "MIT",
8        "engines": {
9                "vscode": "^1.5.0"
10        },
11        "icon": "images/icon.png",
12        "categories": [
13                "Programming Languages",
14                "Linters",
15                "Other"
16        ],
17        "activationEvents": [
18                "onLanguage:cforall"
19        ],
20        "main": "./client/main.js",
21        "contributes": {
22                "languages": [
23                        {
24                                "id": "cforall",
25                                "aliases": [
26                                        "C∀",
27                                        "CForAll",
28                                        "Cforall",
29                                        "cforall"
30                                ],
31                                "extensions": [
32                                        ".cfa",
33                                        ".hfa",
34                                        ".ifa"
35                                ],
36                                "configuration": "./cforall.configuration.json"
37                        }
38                ],
39                "grammars": [
40                        {
41                                "language": "cforall",
42                                "scopeName": "source.cfa",
43                                "path": "./syntaxes/cfa.tmLanguage.json"
44                        }
45                ]
46        },
47        "configuration": {
48                "type": "object",
49                "title": "Example configuration",
50                "properties": {
51                        "languageServerExample.maxNumberOfProblems": {
52                                "scope": "resource",
53                                "type": "number",
54                                "default": 100,
55                                "description": "Controls the maximum number of problems produced by the server."
56                        }
57                }
58        },
59        "dependencies": {
60                "vscode-languageclient": "^4.1.4"
61        },
62        "devDependencies": {
63                "vscode-languageclient": "^4.1.4"
64        }
65}
Note: See TracBrowser for help on using the repository browser.