This repository has been archived by the owner on Oct 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
76 lines (76 loc) · 1.87 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
76
{
"name": "lens-app-viewer",
"version": "1.0.0",
"author": "https://github.com/kocyigitkim",
"publisher": "kocyigitkim",
"description": "Application Viewer For Lens Ide",
"main": "dist/main.js",
"renderer": "dist/renderer.js",
"scripts": {
"start": "webpack --watch",
"build": "npm run clean && webpack",
"clean": "rimraf ./dist",
"semantic-release": "semantic-release"
},
"files": [
"dist/"
],
"engines": {
"lens": "^5.0.0-beta.7"
},
"devDependencies": {
"@k8slens/extensions": "^5.0.2",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^16.9.1",
"@types/react": "^17.0.20",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"prettier": "2.3.2",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"ts-loader": "^9.2.3",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.8.0"
},
"license": "MIT",
"keywords": [
"extension",
"k8slens",
"lens"
],
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@types/color": "^3.0.2",
"@types/get-image-colors": "^4.0.1",
"@types/string-similarity": "^4.0.0",
"@types/uuid": "^8.3.1",
"arraybuffer-to-buffer": "^0.0.7",
"bootstrap": "^5.1.1",
"bootstrap-dark-5": "^1.1.0",
"color": "^4.0.1",
"g-i-s": "^2.1.6",
"get-image-colors": "^4.0.0",
"react-bootstrap": "^1.6.3",
"react-icons": "^4.2.0",
"react-spinner-material": "^1.3.1",
"simple-text-parser": "^2.1.1",
"string-similarity": "^4.0.4",
"uuid": "^8.3.2"
}
}