-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.43 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
63
{
"name": "@kubescape/lens-extension",
"version": "0.2.4",
"author": {
"name": "Kubescape Team at Armo"
},
"maintainers": [
{
"name": "David Delarosa",
"email": "[email protected]"
}
],
"description": "Kubescape extension for Lens",
"repository": {
"type": "git",
"url": "git+https://github.com/kubescape/lens-extension.git",
"directory": "."
},
"engines": {
"lens": "^6.0.0"
},
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"start": "webpack --watch",
"build": "npm run clean && webpack",
"clean": "rm -rf ./dist"
},
"dependencies": {
"@kubescape/install": "^0.4.0",
"abort-controller": "^3.0.0",
"node-fetch": "^3.3.0"
},
"devDependencies": {
"@k8slens/extensions": "^6.1.9",
"@types/node": "^14.17.14",
"@types/node-fetch": "^2.6.2",
"@types/react": "^17.0.45",
"@types/react-dom": "^17.0.16",
"css-loader": "^6.7.1",
"file-loader": "^6.2.0",
"mobx": "^6.5.0",
"mobx-react": "^7.6.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.54.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^9.4.1",
"typescript": "^4.0.3",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"license": "Apache",
"keywords": [
"kubescape",
"extension",
"k8slens",
"lens"
]
}