1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/extension-api/package.json
Jari Kolehmainen 7c42df2474 rename extensions -> extension-api
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
2023-01-09 11:01:33 +02:00

34 lines
837 B
JSON

{
"name": "@k8slens/extensions",
"productName": "OpenLens extensions",
"description": "OpenLens - Open Source Kubernetes IDE: extensions",
"version": "6.0.0",
"copyright": "© 2022 OpenLens Authors",
"license": "MIT",
"main": "dist/src/extension-api.js",
"types": "dist/src/extension-api.d.ts",
"files": [
"dist/**/*.ts",
"__mocks__/*.ts",
"dist/**/*.js"
],
"author": {
"name": "OpenLens Authors"
},
"scripts": {
"build": "yarn run webpack --config webpack/extensions.ts",
"build-docs": "yarn run typedoc",
"clean": "rm -rf dist/"
},
"dependencies": {
"@k8slens/open-lens": "^6.4.0-alpha.0"
},
"devDependencies": {
"typedoc": "0.23.23",
"typedoc-plugin-markdown": "^3.13.6",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}