-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
116 lines (116 loc) · 3.3 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
{
"name": "liferay-ide-vscode-plugin",
"displayName": "Liferay IDE Vscode Plugin",
"description": "Liferay IDE Vscode Plugin",
"version": "0.0.1",
"publisher": "liferay",
"engines": {
"vscode": "^1.76.0"
},
"repository": {
"type": "git",
"url": "https://github.com/simonjhy/liferay-ide-vscode-plugin"
},
"extensionDependencies": [],
"extensionDependenciesCompatibility": {},
"categories": [
"Programming Languages"
],
"pricing": "Free",
"activationEvents": [
"onCommand: new.liferay.workspace",
"onCommand: new.liferay.client.extension",
"onCommand: new.liferay.module",
"onCommand: new.liferay.sprign.module",
"onCommand: new.liferay.jsf.module",
"onCommand: new.liferay.fragment.module"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "new.liferay.workspace",
"title": "New Liferay Workspace Project"
},
{
"command": "new.liferay.client.extension",
"title": "New Liferay Client Extension Project"
},
{
"command": "new.liferay.module",
"title": "New Liferay Module Project"
},
{
"command": "new.liferay.spring.module",
"title": "New Liferay Spring Module Project"
},
{
"command": "new.liferay.jsf.module",
"title": "New Liferay JSF Module Project"
},
{
"command": "new.liferay.fragment.module",
"title": "New Liferay Fragment Module Project"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"develop": "webpack-dev-server --mode development",
"build": "webpack --mode production"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/glob": "^8.0.0",
"@types/lodash": "^4.14.191",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/properties-parser": "^0.3.0",
"@types/tar": "^6.1.4",
"@types/unzipper": "^0.10.5",
"@types/vscode": "^1.0.0",
"@types/winreg": "^1.2.30",
"@types/xmldom": "^0.1.31",
"@types/yauzl": "^2.10.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"@vscode/test-electron": "^2.2.3",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"mocha": "^10.1.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.5",
"webpack": "^5.76.1",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@types/winston": "^2.4.4",
"@types/yauzl": "^2.10.0",
"axios": "^0.21.4",
"expand-home-dir": "0.0.3",
"find-java-home": "1.1.0",
"fs-extra": "^8.1.0",
"jdk-utils": "^0.4.4",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"mkdirp": "^2.1.5",
"node-fetch": "^3.1.0",
"properties-parser": "^0.3.1",
"tar": "^6.1.13",
"unzipper": "^0.10.11",
"vscode-gradle": "^3.10.1",
"winreg-utf8": "^0.1.1",
"xml-query": "^1.5.0",
"xmldom": "^0.1.31",
"yauzl": "^2.10.0"
}
}