1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/packages/legacy-extension-example/package.json
dependabot[bot] 14af67b489 chore(deps-dev): Bump @types/node from 16.18.24 to 16.18.25
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 16.18.24 to 16.18.25.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-04-26 09:28:31 -04:00

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-alpha.6",
"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-alpha.8",
"@types/node": "^16.18.25",
"typescript": "^4.9.5",
"webpack": "^5.80.0",
"webpack-cli": "^5.0.1"
}
}