-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.27 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.27 KB
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": "secretdesk",
"productName": "SecretDesk",
"version": "1.1.0",
"description": "A desktop app for browsing and editing Kubernetes secrets",
"main": ".vite/build/main.js",
"repository": {
"type": "git",
"url": "https://github.com/akshitkrnagpal/secret-desk.git"
},
"homepage": "https://github.com/akshitkrnagpal/secret-desk",
"bugs": {
"url": "https://github.com/akshitkrnagpal/secret-desk/issues"
},
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"lint": "eslint --ext .ts,.tsx ."
},
"keywords": [],
"author": {
"name": "akshitkrnagpal",
"email": "akshitkrnagpal@gmail.com"
},
"license": "MIT",
"pnpm": {
"onlyBuiltDependencies": [
"electron",
"electron-winstaller"
]
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-zip": "^7.11.1",
"@electron-forge/plugin-auto-unpack-natives": "^7.11.1",
"@electron-forge/plugin-fuses": "^7.11.1",
"@electron-forge/plugin-vite": "^7.11.1",
"@electron-forge/publisher-github": "^7.11.1",
"@electron/fuses": "^1.8.0",
"@tailwindcss/vite": "^4.2.1",
"@types/js-yaml": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^5.1.4",
"electron": "40.6.1",
"eslint": "^8.57.1",
"eslint-plugin-import": "^2.32.0",
"tailwindcss": "^4.2.1",
"typescript": "~5.7.3",
"vite": "^5.4.21"
},
"dependencies": {
"@kubernetes/client-node": "^1.4.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fix-path": "^5.0.0",
"js-yaml": "^4.1.1",
"lucide-react": "^0.576.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0"
}
}