Files
spring-tools/theia-extensions/theia-commons/package.json

43 lines
950 B
JSON

{
"name": "@pivotal-tools/theia-languageclient",
"version": "0.0.8",
"description": "Theia IDE language client for STS4 language servers",
"license": "EPL-1.0",
"repository": "https://github.com/spring-projects/sts4",
"keywords": [
"theia-extension"
],
"files": [
"lib",
"data"
],
"engines": {
"npm": "^5.0.0",
"vscode": "^1.25.0"
},
"dependencies": {
"@pivotal-tools/jvm-launch-utils": "0.0.11",
"@theia/core": "latest",
"@theia/editor": "latest",
"@theia/languages": "latest",
"@theia/monaco": "latest",
"@types/glob": "^5.0.30",
"glob": "^7.1.2"
},
"devDependencies": {
"rimraf": "^2.6.2",
"typescript": "^3.1.3"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w"
},
"theiaExtensions": [
{
"frontend": "lib/browser/language-client-frontend-module"
}
]
}