strimzi-headlamp 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +396 -0
  3. package/dist/main.js +71 -0
  4. package/package.json +63 -0
package/package.json ADDED
@@ -0,0 +1,63 @@
1
+ {
2
+ "name": "strimzi-headlamp",
3
+ "version": "0.3.3",
4
+ "description": "Headlamp plugin for managing Strimzi (Apache Kafka on Kubernetes) resources",
5
+ "main": "dist/main.js",
6
+ "author": "Angelo Cesaro",
7
+ "license": "Apache-2.0",
8
+ "private": false,
9
+ "keywords": [
10
+ "headlamp",
11
+ "headlamp-plugin",
12
+ "kubernetes",
13
+ "strimzi",
14
+ "kafka"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/cesaroangelo/strimzi-headlamp.git"
19
+ },
20
+ "homepage": "https://github.com/cesaroangelo/strimzi-headlamp#readme",
21
+ "bugs": {
22
+ "url": "https://github.com/cesaroangelo/strimzi-headlamp/issues"
23
+ },
24
+ "files": [
25
+ "dist/**/*",
26
+ "README.md",
27
+ "LICENSE"
28
+ ],
29
+ "scripts": {
30
+ "build": "headlamp-plugin build",
31
+ "package": "headlamp-plugin package",
32
+ "start": "headlamp-plugin start",
33
+ "tsc": "headlamp-plugin tsc",
34
+ "format": "prettier --write \"src/**/*.{ts,tsx}\"",
35
+ "lint": "eslint src --ext .ts,.tsx",
36
+ "storybook": "headlamp-plugin storybook",
37
+ "test": "headlamp-plugin test",
38
+ "storybook-build": "headlamp-plugin storybook-build",
39
+ "i18n": "headlamp-plugin i18n"
40
+ },
41
+ "devDependencies": {
42
+ "@kinvolk/headlamp-plugin": "^0.13.0",
43
+ "@types/node": "^20.11.0",
44
+ "@types/react": "^18.2.48",
45
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
46
+ "@typescript-eslint/parser": "^6.19.0",
47
+ "eslint": "^8.56.0",
48
+ "eslint-plugin-react": "^7.33.2",
49
+ "prettier": "^3.2.4",
50
+ "typescript": "^5.6.2"
51
+ },
52
+ "eslintConfig": {
53
+ "extends": [
54
+ "@headlamp-k8s",
55
+ "prettier",
56
+ "plugin:jsx-a11y/recommended"
57
+ ]
58
+ },
59
+ "prettier": "@headlamp-k8s/eslint-config/prettier-config",
60
+ "dependencies": {
61
+ "@xyflow/react": "^12.9.3"
62
+ }
63
+ }