This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 1.7 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
77
78
79
80
81
82
83
84
85
{
"name": "pixelic-overlay",
"description": "",
"author": "Pixelic",
"version": "1.1.5",
"main": "main.js",
"scripts": {
"start": "vite build && electron .",
"build": "electron-builder"
},
"build": {
"productName": "Pixelic Overlay",
"appId": "pixelic.overlay",
"artifactName": "Pixelic-Overlay-Setup-v${buildVersion}-${arch}.${ext}",
"directories": {
"output": "builds"
},
"publish": [
{
"provider": "github",
"owner": "pixelicc",
"repo": "pixelic-overlay"
}
],
"win": {
"icon": "src/assets/logo.png",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"license": "license.txt"
},
"linux": {
"icon": "src/assets/logo.png",
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
}
]
},
"mac": {
"icon": "src/assets/logo.png",
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
]
}
},
"dependencies": {
"@vueuse/electron": "^10.7.0",
"axios": "^1.6.2",
"axios-retry": "^4.0.0",
"discord-rpc": "^4.0.1",
"electron-log": "^5.0.1",
"electron-store": "^8.1.0",
"electron-updater": "^6.1.7",
"moment": "^2.29.4",
"tail": "2.2.6",
"vue": "^3.3.13",
"vue-router": "^4.2.5",
"vuetify": "^3.4.8"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.5.2",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"sass": "^1.69.5",
"vite": "^5.0.10"
}
}