-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 2.45 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "midl3-language-server",
"displayName": "MIDL 3.0 language support",
"description": "Language server for MIDL 3.0",
"icon": "images/midl3.png",
"author": "Microsoft Corporation",
"license": "MIT",
"version": "0.0.31",
"repository": {
"type": "git",
"url": "https://github.com/asklar/midl-langserv"
},
"publisher": "AlexanderSklarMSFT",
"categories": [
"Programming Languages"
],
"keywords": [
"multi-root ready",
"UWP",
"WinRT",
"C++/WinRT",
"cppwinrt",
"Windows",
"Windows Runtime",
"Microsoft"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:midl3"
],
"main": "./client/out/extension",
"contributes": {
"languages": [
{
"id": "midl3",
"extensions": [
".idl"
],
"aliases": [
"MIDL",
"MIDL3",
"MIDLRT"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "midl3",
"scopeName": "source.midl3",
"path": "./syntaxes/midl3.tmGrammar.json"
}
],
"configurationDefaults": {
"[midl3]": {
"editor.semanticHighlighting.enabled": true
}
},
"configuration": {
"type": "object",
"title": "MIDL 3.0 language support",
"properties": {
"midl3.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"midl3.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 build",
"build": "tsc -b",
"postbuild": "yarn run copy-files",
"copy-files": "copyfiles -u 2 server/src/midl.pegjs server/out",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "pwsh ./scripts/e2e.ps1",
"test:parser": "npm run build && npx mocha server/out/test/index.js",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.0",
"@types/pegjs": "^0.10.3",
"@typescript-eslint/parser": "^2.3.0",
"copyfiles": "^2.4.1",
"eslint": "^6.4.0",
"mocha": "^8.1.1",
"typescript": "^4.2.2",
"vsce": "^1.96.1"
},
"dependencies": {
"applicationinsights": "^2.1.4",
"pegjs": "^0.10.0",
"vscode-uri": "^3.0.2"
}
}