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 19c24b0998
feat: Introduce feature adapter for injectable-react and injectable-mobx
Signed-off-by: Janne Savolainen <janne.savolainen@live.fi>
2023-04-17 11:45:27 +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.1.2",
"@ogre-tools/injectable-extension-for-mobx": "^15.1.2",
"@ogre-tools/injectable-react": "^15.1.2"
}
}