-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
62 lines (62 loc) · 1.51 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@andrea-falco/lens-multi-pod-logs",
"description": "Multi pod and container logs for Lens",
"version": "0.3.7",
"author": "Andrea Falco",
"publisher": "Andrea Falco",
"repository": {
"type": "git",
"url": "https://github.com/andrea-falco/lens-multi-pod-logs.git",
"directory": "."
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"engines": {
"node": ">=16 <17",
"lens": "^6.0.0"
},
"scripts": {
"start": "NODE_ENV=development webpack --watch",
"build": "npm run clean && NODE_ENV=production webpack",
"clean": "rm -rf ./dist",
"lint": "eslint",
"test": "npm run lint && jest"
},
"files": [
"dist/**/*"
],
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@k8slens/extensions": "^6.1.9",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"@types/node": "^16.18.2",
"@types/react": "^17.0.45",
"@types/jest": "^28.1.6",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2",
"eslint": "^8.28.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"jest": "^28.1.3",
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5"
},
"keywords": [
"lens",
"extension",
"k8slens",
"kubernetes",
"multi",
"pod",
"container",
"logs"
],
"license": "MIT"
}