This repository has been archived on 2026-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
headlamp-sealed-secrets-plugin/headlamp-sealed-secrets/package.json
T
Chris Farhood ab366341f3 fix: downgrade headlamp-plugin SDK to 0.13.0 to fix React context errors (v0.2.2)
The plugin was built with @kinvolk/headlamp-plugin@^0.13.1, but the Headlamp server
is running with SDK version 0.13.0-alpha.11. This version mismatch caused React
context to be undefined, resulting in 'TypeError: undefined is not an object
(evaluating O2.createContext)' in the browser console.

Changes:
- Downgraded @kinvolk/headlamp-plugin from ^0.13.1 to ^0.13.0
- Removed 'main' field from package.json (carried over from v0.2.1)
- Bumped version to 0.2.2
- Created Artifact Hub metadata for 0.2.2
- Updated checksum: SHA256:3dd94e4da82a729c09eb73dcb548f89da00425169f21ff38bfb202caa442c95a

Fixes browser console error preventing plugin from loading.

Generated with [Claude Code](https://claude.ai/code)
via [Happy](https://happy.engineering)

Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
2026-02-12 08:44:32 -05:00

69 lines
1.8 KiB
JSON

{
"name": "headlamp-sealed-secrets",
"version": "0.2.2",
"description": "Headlamp plugin for Bitnami Sealed Secrets - manage encrypted Kubernetes secrets",
"files": [
"dist",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin.git",
"directory": "headlamp-sealed-secrets"
},
"bugs": {
"url": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin/issues"
},
"homepage": "https://github.com/cpfarhood/headlamp-sealed-secrets-plugin#readme",
"author": "cpfarhood",
"license": "Apache-2.0",
"scripts": {
"start": "headlamp-plugin start",
"build": "headlamp-plugin build",
"format": "headlamp-plugin format",
"lint": "headlamp-plugin lint",
"lint-fix": "headlamp-plugin lint --fix",
"package": "headlamp-plugin package",
"tsc": "headlamp-plugin tsc",
"storybook": "headlamp-plugin storybook",
"storybook-build": "headlamp-plugin storybook-build",
"test": "headlamp-plugin test",
"i18n": "headlamp-plugin i18n",
"docs:api": "typedoc",
"docs:watch": "typedoc --watch"
},
"keywords": [
"headlamp",
"headlamp-plugin",
"kubernetes",
"kubernetes-ui",
"sealed-secrets",
"bitnami",
"encryption",
"secrets",
"security",
"k8s"
],
"prettier": "@headlamp-k8s/eslint-config/prettier-config",
"eslintConfig": {
"extends": [
"@headlamp-k8s",
"prettier",
"plugin:jsx-a11y/recommended"
]
},
"overrides": {
"typescript": "5.6.2"
},
"dependencies": {
"node-forge": "^1.3.1"
},
"devDependencies": {
"@kinvolk/headlamp-plugin": "^0.13.0",
"@types/node-forge": "^1.3.11",
"typedoc": "^0.28.16",
"typedoc-plugin-markdown": "^4.10.0"
}
}