-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.83 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
{
"name": "vrc-obs-world-overlay",
"version": "1.1.0",
"description": "OBS Overlay that displays information about the VRChat World you are currently in.",
"repository": {
"type": "git",
"url": "https://github.com/philippgitpush/vrc-obs-world-overlay.git"
},
"main": "./src/electron/main.js",
"scripts": {
"dev": "concurrently --kill-others \"npm run vite\" \"npm run electron\"",
"build": "vite build && electron-builder",
"vite": "vite --port 3000 --host localhost",
"vite-build": "vite build",
"electron": "electron ."
},
"build": {
"appId": "com.philippgitpush.vrc-obs-world-overlay",
"productName": "VRC OBS World Overlay",
"directories": {
"output": "build"
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
],
"icon": "source/vrc-obs-world-overlay-logo.ico",
"artifactName": "VRC-OBS-World-Overlay-${version}-${os}.${ext}"
},
"nsis": {
"installerIcon": "source/vrc-obs-world-overlay-logo.ico",
"deleteAppDataOnUninstall": true
}
},
"author": "philippgitpush",
"license": "MIT",
"type": "module",
"devDependencies": {
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"postcss": "^8.4.49",
"sass-embedded": "^1.81.1",
"tailwindcss": "^3.4.15",
"vite": "^5.4.11",
"vite-plugin-vue-devtools": "^7.6.7"
},
"dependencies": {
"animejs": "^3.2.2",
"axios": "^1.7.8",
"cors": "^2.8.5",
"electron-store": "^10.0.0",
"express": "^4.21.1",
"sqlite3": "^5.1.7",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
}
}