forked from scala/scala3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 3.34 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "dotty",
"displayName": "Dotty Language Server",
"description": "IDE integration for Dotty, the experimental Scala compiler",
"version": "0.1.13-snapshot",
"license": "BSD-3-Clause",
"publisher": "lampepfl",
"repository": {
"type": "git",
"url": "https://github.com/lampepfl/dotty.git"
},
"icon": "images/dotty-logo.png",
"engines": {
"vscode": "^1.27.1"
},
"categories": [
"Languages"
],
"keywords": [
"scala",
"dotty",
"jvm",
"language-server"
],
"main": "./out/src/extension",
"activationEvents": [
"onLanguage:scala",
"workspaceContains:.dotty-ide.json"
],
"contributes": {
"languages": [
{
"id": "scala",
"extensions": [
".scala",
".sc"
],
"aliases": [
"Scala"
]
}
],
"configuration": {
"type": "object",
"title": "Dotty configuration",
"properties": {
"dotty.runWorksheetOnSave": {
"type": "boolean",
"default": true,
"description": "If true, saving a worksheet will also run it."
},
"dotty.trace.remoteWorkspaceDumpUrl": {
"type": "string",
"default": "",
"description": "Url to send local workspace dump to."
},
"dotty.trace.remoteTracingUrl": {
"type": "string",
"default": "",
"description": "Url to send local LSP communication to."
},
"dotty.trace.machineId": {
"type": [
"string",
"null"
],
"default": null,
"description": "ID of your machine used when Dotty Language Server tracing is turned on."
},
"dotty.trace.maximumMessageSize": {
"type": "number",
"default": 512,
"description": "Maximum size for the messages sent to remote server. Larger ones will be split."
}
}
},
"commands": [
{
"command": "dotty.worksheet.run",
"title": "Run worksheet",
"category": "Scala"
},
{
"command": "dotty.worksheet.cancel",
"title": "Cancel running worksheet",
"category": "Scala"
}
],
"configurationDefaults": {
"[scala]": {
"editor.tabSize": 2,
"editor.insertSpaces": true
}
},
"files.associations": {
"*.sc": "scala"
}
},
"scripts": {
"tsc": "./node_modules/.bin/tsc",
"vscode:prepublish": "npm install && ./node_modules/.bin/tsc -p ./",
"compile": "./node_modules/.bin/tsc -p ./",
"test": "node ./node_modules/vscode/bin/test",
"postinstall": "node ./node_modules/vscode/bin/install && curl -L -o out/coursier https://github.com/coursier/coursier/raw/v1.1.0-M7/coursier"
},
"extensionDependencies": [
"scala-lang.scala"
],
"dependencies": {
"archiver": "^3.0.0",
"compare-versions": "^3.4.0",
"promisify-child-process": "^2.1.2",
"request": "^2.88.0",
"vscode-jsonrpc": "4.0.0",
"vscode-languageclient": "^5.1.0",
"vscode-languageserver": "^5.1.0",
"ws": "^6.1.2"
},
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/compare-versions": "^3.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.38",
"@types/request": "^2.48.1",
"@types/ws": "^6.0.0",
"typescript": "^2.9.2",
"vscode": "^1.1.22"
}
}