-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.67 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.67 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
{
"name": "gpuscout-gui",
"version": "1.0.0",
"description": "A graphical UI fpr the GPUscout application",
"main": "./out/main/index.js",
"author": "Tobias Stuckenberger",
"homepage": "",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"start": "electron-vite preview",
"dev": "electron-vite dev -- --ozone-platform=wayland --enable-features=WaylandWindowDecorations",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"jsdoc": "^4.0.4",
"pinia": "^2.2.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^1.0.2",
"@rushstack/eslint-patch": "^1.10.3",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"autoprefixer": "^10.4.20",
"electron": "^41.1.0",
"electron-builder": "^26.8.1",
"electron-vite": "^5.0.0",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"postcss": "^8.4.45",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.10",
"vite": "^8.0.3",
"vue": "^3.4.30"
}
}