forked from appvia/lens-extension-fluxcd
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.96 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
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "lens-extension-fluxcd",
"version": "1.10.0",
"description": "Lens extension for FluxCD",
"contributors": [
{
"name": "Stanislaw Wozniak",
"url": "https://github.com/sponte"
},
{
"name": "Oliver Kaufmann",
"email": "[email protected]",
"url": "https://x.com/okaufmannCH"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/okaufmann/lens-extension-fluxcd.git",
"directory": "fluxcd"
},
"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",
"lint": "eslint --ext .js,.ts,.tsx --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.ts,.tsx --ignore-path .gitignore ."
},
"dependencies": {
"mobx": "^6.6.1",
"mobx-react": "^7.5.2",
"react-open-doodles": "^1.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.17.10",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"@k8slens/extensions": "^5.5.4",
"@types/chart.js": "^2.9.37",
"@types/node": "^16.0.0",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"css-loader": "^6.7.1",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.3",
"raw-loader": "^4.0.2",
"sass": "^1.53.0",
"sass-loader": "^13.0.2",
"style-loader": "^3.3.1",
"ts-loader": "^8.4.0",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"license": "MIT",
"homepage": "https://github.com/okaufmann/lens-extension-fluxcd",
"bugs": {
"url": "https://github.com/okaufmann/lens-extension-fluxcd/issues"
},
"keywords": [
"example",
"extension",
"k8slens",
"lens",
"mirantis",
"tutorial"
]
}