-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "copilots-launchpad",
"productName": "CoPilots Launchpad",
"version": "0.9.0",
"description": "One-click launcher for Microsoft 365 test accounts",
"author": "CoPilots Launchpad",
"license": "MIT",
"main": "electron/main.js",
"scripts": {
"dev": "concurrently \"vite --config vite.config.mjs\" \"wait-on http://localhost:5173 && electron .\"",
"build": "vite build --config vite.config.mjs",
"dist": "npm run build && electron-builder",
"dist:win": "npm run build && electron-builder --win",
"dist:mac": "npm run build && electron-builder --mac",
"lint": "eslint src/"
},
"dependencies": {
"electron-store": "^8.1.0",
"electron-updater": "^6.3.0",
"playwright-core": "^1.42.0"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.18",
"concurrently": "^8.2.2",
"electron": "^29.1.0",
"electron-builder": "^26.0.1",
"postcss": "^8.4.35",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"vite": "^5.1.6",
"wait-on": "^7.2.0"
}
}