-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "c3-lang",
"displayName": "C3",
"description": "C3 Language support for Visual Studio Code",
"author": "Jean-Baptiste Perrier",
"version": "0.3.39",
"publisher": "C3",
"engines": {
"vscode": "^1.61.0"
},
"activationEvents": [
"onLanguage:C3"
],
"main": "./client/out/extension",
"categories": [
"Programming Languages",
"Snippets"
],
"contributes": {
"configuration":{
"type": "object",
"title": "C3",
"properties": {
"C3.language-server.trace.server": {
"scope": "window",
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VS Code and the language server."
},
"C3.compiler.path": {
"scope": "workspace",
"type": "string",
"description": "The path to your C3 compiler. Can be the executable name if added to PATH env.",
"default": "c3c.exe"
}
}
},
"snippets": [
{
"language": "C3",
"path": "snippets.json"
}
],
"languages": [{
"id": "C3",
"aliases": ["C3", "c3"],
"extensions": [".c3", ".c3i", ".c3t"],
"configuration": "./language-configuration.json"
}],
"grammars": [{
"language": "C3",
"scopeName": "source.c3",
"path": "./syntaxes/C3.tmLanguage.json"
}]
},
"scripts": {
"compile": "tsc -b"
},
"devDependencies": {
"@types/mocha": "^9.1.0",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.30.0",
"@typescript-eslint/parser": "^5.30.0",
"eslint": "^8.13.0",
"mocha": "^9.2.1",
"typescript": "^4.7.2"
}
}