-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 2.29 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
{
"name": "vscode-lombok",
"displayName": "Lombok Annotations Support for VS Code",
"description": "Refactor code with Lombok annotations, or remove Lombok annotations with actual methods.",
"version": "1.1.1",
"publisher": "vscjava",
"icon": "images/icon.png",
"license": "MIT",
"aiKey": [],
"engines": {
"vscode": "^1.75.0"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/vscode-lombok.git"
},
"keywords": [
"lombok",
"vs-code"
],
"categories": [
"Other"
],
"main": "./dist/extension",
"activationEvents": [
"onLanguage:java",
"workspaceContains:pom.xml",
"workspaceContains:build.gradle"
],
"contributes": {
"languages": [
{
"id": "java",
"extensions": [
".java",
".jav"
],
"aliases": [
"Java",
"java"
]
}
],
"javaExtensions": [
"./plugins/com.microsoft.java.lombok-0.1.0.jar"
]
},
"scripts": {
"clean": "node ./node_modules/rimraf/bin.js out/",
"test": "npm run compile && node ./out/src/test/runTest.js",
"compile": "tsc -p . && webpack --config webpack.config.js",
"watch": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js --mode=\"production\"",
"package": "vsce package",
"vscode:prepublish": "npm run compile",
"build-server": "node scripts/build/buildJdtlsExt.js"
},
"extensionDependencies": [
"redhat.java"
],
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^10.0.1",
"@types/node": "^14.18.21",
"@types/vscode": "1.75.0",
"@vscode/test-electron": "^2.3.8",
"glob": "^7.1.6",
"mocha": "^10.2.0",
"rimraf": "^3.0.1",
"ts-loader": "^9.3.1",
"tslint": "^6.1.3",
"typescript": "^4.7.4",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"vscode-extension-telemetry-wrapper": "^0.14.0",
"vscode-languageclient": "7.1.0-next.5"
}
}