@tobejacob/myextension
Version:
The example extension demonstrates how to contribute a custom widget (i.e. a view or editor) to Eclipse Theia. Furthermore, the template contains an example unit test.
37 lines • 745 B
JSON
{
"name": "@tobejacob/myextension",
"keywords": [
"theia-extension",
"tobesoft",
"jacoblee"
],
"version": "0.0.2",
"files": [
"lib",
"src"
],
"dependencies": {
"@theia/core": "latest"
},
"devDependencies": {
"rimraf": "latest",
"typescript": "~4.5.5",
"@testing-library/react": "^11.2.7",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-node": "^10.9.1",
"ts-jest": "^26.5.6"
},
"scripts": {
"prepare": "yarn run clean && yarn run build",
"clean": "rimraf lib",
"build": "tsc",
"watch": "tsc -w",
"test": "jest --config configs/jest.config.ts"
},
"theiaExtensions": [
{
"frontend": "lib/browser/myextension-frontend-module"
}
]
}