mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Introduce an agnostic way to start application is the Feature Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce directory for application-packages Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Remove non agnostic timeslots from agnostic application Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce empty package for electron main specific stuff for Application Feature Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Introduce electron-main specific timeslots Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Update injectable version Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Update README Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Tweak export names to make them easier to import Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Make starting of application synchronous for Electron main Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Tweak versions in package jsons Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> * Consolidate name of feature file Signed-off-by: Janne Savolainen <janne.savolainen@live.fi> --------- Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "@k8slens/application",
|
|
"private": false,
|
|
"version": "6.5.0-alpha.0",
|
|
"description": "Package for creating Lens applications",
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lensapp/lens.git"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"author": {
|
|
"name": "OpenLens Authors",
|
|
"email": "info@k8slens.dev"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/lensapp/lens",
|
|
"scripts": {
|
|
"build": "webpack",
|
|
"dev": "webpack --mode=development --watch",
|
|
"test": "jest --coverage --runInBand"
|
|
},
|
|
"peerDependencies": {
|
|
"@k8slens/feature-core": "^6.5.0-alpha.0",
|
|
"@ogre-tools/fp": "^15.1.2",
|
|
"@ogre-tools/injectable": "^15.1.2",
|
|
"@ogre-tools/injectable-extension-for-auto-registration": "^15.1.2",
|
|
"@ogre-tools/injectable-utils": "^15.1.2",
|
|
"lodash": "^4.17.15"
|
|
},
|
|
|
|
"devDependencies": {
|
|
"@async-fn/jest": "^1.6.4"
|
|
}
|
|
}
|