mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
46 lines
1.0 KiB
JSON
46 lines
1.0 KiB
JSON
{
|
|
"name": "@k8slens/legacy-extension-example",
|
|
"private": false,
|
|
"description": "An example bundled Lens extensions using the v1 API",
|
|
"version": "1.0.0",
|
|
"type": "commonjs",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/lensapp/lens.git"
|
|
},
|
|
"exports": {
|
|
"./package.json": "./package.json",
|
|
"./main": "./dist/main.js",
|
|
"./renderer": "./dist/renderer.js"
|
|
},
|
|
"engines": {
|
|
"lens": "6.5"
|
|
},
|
|
"author": {
|
|
"name": "OpenLens Authors",
|
|
"email": "info@k8slens.dev"
|
|
},
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/lensapp/lens",
|
|
"scripts": {
|
|
"clean": "rimraf dist/",
|
|
"build": "webpack --config webpack.ts",
|
|
"lint": "lens-lint",
|
|
"lint:fix": "lens-lint --fix"
|
|
},
|
|
"devDependencies": {
|
|
"@k8slens/extensions": "^6.5.0",
|
|
"@types/node": "^16.18.25",
|
|
"typescript": "^4.9.5",
|
|
"webpack": "^5.81.0",
|
|
"webpack-cli": "^5.0.1"
|
|
}
|
|
}
|