1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/utility-features/basic-dependency-features/package.json
Janne Savolainen 0944e4b8fd
chore: Update ogre-tools libraries
Co-authored-by: Mikko Aspiala <mikko.aspiala@gmail.com>

Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-04-17 12:08:28 +03:00

35 lines
977 B
JSON

{
"name": "@k8slens/basic-dependency-features",
"description": "Contains basic Features that can be used as dependency Features to make clients of a Feature not need to know about dependencies of the Feature.",
"version": "1.0.0-alpha.0",
"type": "commonjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"private": false,
"files": [
"dist"
],
"author": {
"name": "OpenLens Authors",
"email": "info@k8slens.dev"
},
"license": "MIT",
"homepage": "https://github.com/lensapp/lens",
"scripts": {
"clean": "rimraf dist/",
"build": "webpack",
"lint": "lens-lint",
"lint:fix": "lens-lint --fix"
},
"peerDependencies": {
"@k8slens/feature-core": "^6.5.0-alpha.0",
"@ogre-tools/injectable": "^15.5.1",
"@ogre-tools/injectable-extension-for-mobx": "^15.5.1",
"@ogre-tools/injectable-react": "^15.5.1"
}
}