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

39 lines
854 B
JSON

{
"name": "@theia/spring-boot",
"keywords": [
"theia-extension"
],
"version": "0.0.0",
"files": [
"lib",
"src",
"jars",
"images"
],
"dependencies": {
"@theia/core": "latest",
"@theia/languages": "latest",
"@theia/preferences": "latest",
"@theia/editor": "latest",
"@theia/monaco": "latest",
"@theia/java": "latest",
"@pivotal-tools/theia-languageclient": "0.0.1",
"@pivotal-tools/jvm-launch-utils": "0.0.11"
},
"devDependencies": {
"rimraf": "latest",
"typescript": "latest"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w"
},
"theiaExtensions": [
{
"frontend": "lib/browser/spring-boot-frontend-module",
"backend": "lib/node/spring-boot-backend-module"
}
]
}