-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
43 lines (43 loc) · 970 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "@alebcay/openlens-node-pod-menu",
"version": "0.1.2",
"description": "Node and pod menus for OpenLens",
"repository": {
"type": "git",
"url": "git+https://github.com/alebcay/openlens-node-pod-menu.git",
"directory": "."
},
"renderer": "dist/renderer.js",
"engines": {
"node": "^16.14.2",
"lens": "^6.3.0"
},
"scripts": {
"build": "npm run clean && npx webpack",
"clean": "rm -rf ./dist",
"dev": "npx webpack -- --watch",
"lint": "npx eslint .",
"test": "npx jest --passWithNoTests --env=jsdom src "
},
"files": [
"dist/**/*"
],
"devDependencies": {
"@k8slens/extensions": "^6.3.0",
"@types/react": "^17.0.52",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"eslint": "^8.31.0",
"ts-loader": "^9.4.2",
"webpack-cli": "^5.0.1"
},
"license": "MIT",
"keywords": [
"node",
"pod",
"menu",
"extension",
"k8slens",
"lens",
"openlens"
]
}