-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 952 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 952 Bytes
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
{
"name": "vscode-java-kotlin",
"displayName": "Java + Kotlin",
"description": "Language support for Java + Kotlin projects",
"repository": {
"type": "git",
"url": "https://github.com/daplf/vscode-java-kotlin.git"
},
"version": "0.0.1",
"publisher": "daplf",
"license": "MIT",
"categories": [
"Programming Languages"
],
"engines": {
"vscode": "^1.52.0"
},
"keywords": [
"java",
"kotlin"
],
"activationEvents": [
"onLanguage:java"
],
"contributes": {
"javaExtensions": [
"./jars/jdt-ls-extension.jar"
]
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/node": "^12.8.1",
"@types/vscode": "^1.52.0",
"typescript": "^4.3.5",
"vsce": "^1.95.0"
},
"extensionDependencies": [
"redhat.java",
"fwcd.kotlin"
]
}