32 lines
631 B
JSON
32 lines
631 B
JSON
{
|
|
"name": "@theia/bosh",
|
|
"keywords": [
|
|
"theia-extension"
|
|
],
|
|
"version": "0.0.0",
|
|
"files": [
|
|
"lib",
|
|
"src"
|
|
],
|
|
"dependencies": {
|
|
"@theia/core": "latest",
|
|
"@theia/languages": "latest",
|
|
"@pivotal-tools/theia-languageclient": "0.0.1"
|
|
},
|
|
"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/bosh-frontend-module",
|
|
"backend": "lib/node/bosh-backend-module"
|
|
}
|
|
]
|
|
} |