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
Roman 6127fc552a upgrade typescript to v5 -- part 1
Signed-off-by: Roman <ixrock@gmail.com>
2023-03-28 14:22:02 +04:00

41 lines
1.0 KiB
JSON

{
"name": "@k8slens/extensions",
"productName": "OpenLens extensions",
"description": "OpenLens - Open Source Kubernetes IDE: extensions",
"version": "6.5.0-alpha.3",
"copyright": "© 2022 OpenLens Authors",
"license": "MIT",
"main": "dist/extension-api.js",
"types": "dist/extension-api.d.ts",
"files": [
"dist/**/*.ts",
"__mocks__/*.ts",
"dist/**/*.js"
],
"author": {
"name": "OpenLens Authors"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "webpack --config webpack/extensions.ts",
"build:docs": "typedoc",
"clean": "rimraf dist/",
"prepare:dev": "npm run build"
},
"dependencies": {
"@k8slens/core": "^6.5.0-alpha.3"
},
"devDependencies": {
"@k8slens/typescript": "^6.5.0-alpha.1",
"@k8slens/webpack": "^6.5.0-alpha.1",
"@types/node": "^16.18.6",
"rimraf": "^4.1.2",
"typed-emitter": "^2.1.0",
"typedoc": "0.23.25",
"typedoc-plugin-markdown": "^3.13.6"
}
}