-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.25 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
{
"name": "@aquasecurity/trivy-operator-lens-extension",
"publisher": "aquasecurity.github.io",
"version": "0.1.0",
"description": "Lens extension for viewing trivy-operator security information",
"homepage": "https://github.com/aquasecurity/trivy-operator-lens-extension",
"repository": {
"type": "git",
"url": "https://github.com/aquasecurity/trivy-operator-lens-extension.git"
},
"bugs": {
"url": "https://github.com/aquasecurity/trivy-operator-lens-extension/issues"
},
"license": "Apache-2.0",
"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"
},
"devDependencies": {
"@emotion/css": "^11.0.0",
"@emotion/react": "^11.1.0",
"@emotion/styled": "^11.0.0",
"@k8slens/extensions": "^5.3.0",
"@types/node": "^14.17.0",
"@types/react": "^17.0.0",
"@types/webpack": "^4.41.0",
"mobx": "^6.3.0",
"mobx-react": "^7.2.0",
"sass": "^1.29.0",
"css-loader": "^5.0.0",
"sass-loader": "^10.0.0",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.0",
"typescript": "^4.4.0",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.0"
}
}