-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
87 lines (87 loc) · 2.26 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
{
"name": "facilityapi-vscode",
"displayName": "Facility API",
"description": "Language support for Facility Service Definition (fsd) files.",
"version": "1.3.0",
"publisher": "FacilityAPI",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/FacilityAPI/FacilityVSCode.git"
},
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Languages"
],
"keywords": [
"fsd",
"Facility API",
"Facility Service Definition",
"web services",
"API"
],
"icon": "assets/icon.png",
"activationEvents": [
"onLanguage:fsd"
],
"main": "out/extension",
"contributes": {
"languages": [
{
"id": "fsd",
"aliases": [
"Facility Service Definition",
"fsd"
],
"extensions": [
".fsd"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "fsd",
"scopeName": "source.fsd",
"path": "./syntaxes/fsd.tmLanguage.json"
}
],
"configuration": {
"type": "object",
"title": "Facility API",
"properties": {
"languageServerFsd.maxNumberOfProblems": {
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"languageServerFsd.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "verbose",
"description": "Traces the communication between VSCode and the languageServerFsd service."
}
}
}
},
"scripts": {
"build": "tsc",
"vscode:prepublish": "tsc && npm run get-languageserver",
"get-languageserver": "rm -rf server && mkdir server && curl -L -o server/FacilityLanguageServer.zip https://github.com/FacilityApi/FacilityLanguageServer/releases/download/v2.3.0/Facility.LanguageServer.zip && unzip -d server server/FacilityLanguageServer.zip && rm server/FacilityLanguageServer.zip",
"watch": "tsc -watch"
},
"devDependencies": {
"@types/node": "^16",
"@types/vscode": "^1.75.0",
"typescript": "^5.2.2"
},
"dependencies": {
"vscode-languageclient": "^8.1.0"
}
}