-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.1 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 3.1 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "groups-console",
"productName": "Groups Console",
"version": "0.1.3",
"description": "Windows-first Exchange admin desktop app.",
"main": ".vite/build/index.js",
"homepage": "https://github.com/CarlosCommits/groups-console#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CarlosCommits/groups-console.git"
},
"bugs": {
"url": "https://github.com/CarlosCommits/groups-console/issues"
},
"keywords": [
"electron",
"exchange-online",
"microsoft-365",
"microsoft-graph",
"powershell"
],
"scripts": {
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"publish": "electron-forge publish",
"verify": "npm run lint && npm run typecheck && npm run test",
"release:patch": "npm version patch -m \"chore(release): v%s\"",
"release:minor": "npm version minor -m \"chore(release): v%s\"",
"release:major": "npm version major -m \"chore(release): v%s\"",
"release:push": "git push --follow-tags",
"preversion": "npm run verify",
"postversion": "git status --short",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit -p tsconfig.main.json && tsc --noEmit -p tsconfig.preload.json && tsc --noEmit -p tsconfig.renderer.json",
"test": "vitest run",
"test:watch": "vitest"
},
"author": {
"name": "Carlos Canas",
"url": "https://github.com/CarlosCommits"
},
"license": "Apache-2.0",
"engines": {
"node": ">=24"
},
"dependencies": {
"@azure/msal-node": "^3.8.0",
"@tanstack/react-query": "^5.99.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"electron-squirrel-startup": "^1.0.1",
"exceljs": "^4.4.0",
"lucide-react": "^0.542.0",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tw-animate-css": "^1.4.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@electron-forge/cli": "^7.11.1",
"@electron-forge/maker-squirrel": "^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/fuses": "^1.8.0",
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.55.0",
"@tailwindcss/vite": "^4.1.13",
"@types/electron-squirrel-startup": "^1.0.2",
"@types/node": "^24.3.0",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@vitejs/plugin-react": "^6.0.1",
"electron": "^41.3.0",
"eslint": "^9.35.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.4.0",
"tailwindcss": "^4.1.13",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"overrides": {
"@tootallnate/once": "3.0.1",
"@xmldom/xmldom": "0.8.13",
"fast-uri": "3.1.2",
"ip-address": "10.1.1",
"lodash": "4.18.1",
"tar": "7.5.13",
"tmp": "0.2.7",
"uuid": "14.0.0"
}
}