-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
131 lines (131 loc) · 4.16 KB
/
package.json
File metadata and controls
131 lines (131 loc) · 4.16 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "advosc",
"version": "0.0.5.4",
"description": "Advanced OSC Tools for VRChat (Chatbox, Avatar Profiles, Raw OSC Editor) with sleek looking UI!",
"type": "module",
"main": "dist/main.cjs",
"scripts": {
"build:main": "vite build --config vite.main.config.ts && vite build --config vite.preload.config.ts",
"build:renderer": "vite build",
"copy:natives": "xcopy /E /I /Y natives dist\\\\natives",
"build": "bun run copy:natives && bun run build:main && bun run build:renderer",
"dev:main": "concurrently \"vite build --config vite.main.config.ts --watch\" \"vite build --config vite.preload.config.ts --watch\"",
"dev:renderer": "vite",
"dev": "concurrently \"bun run dev:main\" \"bun run dev:renderer\" \"wait-on http://localhost:5173 && cross-env ELECTRON_DEV=true NODE_ENV=development electron .\"",
"start": "electron .",
"postinstall": "electron-builder install-app-deps",
"package": "bun run build && electron-forge package"
},
"keywords": [
"electron",
"svelte",
"typescript",
"esbuild"
],
"author": "",
"license": "GPL-3.0-only",
"devDependencies": {
"@electron-forge/maker-squirrel": "^7.10.2",
"@internationalized/date": "^3.10.0",
"@sveltejs/vite-plugin-svelte": "^5.1.1",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.17",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.14",
"@tsconfig/svelte": "^5.0.6",
"@types/lodash": "^4.17.20",
"@types/node": "^22.19.1",
"@types/tail": "^2.2.3",
"autoprefixer": "^10.4.22",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^33.4.11",
"electron-builder": "^25.1.8",
"postcss": "^8.5.6",
"postcss-load-config": "^6.0.1",
"svelte": "^5.43.8",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"vaul-svelte": "^1.0.0-next.7",
"vite": "^7.2.2",
"wait-on": "^7.0.1"
},
"dependencies": {
"@electron-forge/cli": "^7.10.2",
"@electron/packager": "^19.0.1",
"@lucide/svelte": "^0.544.0",
"@pulsoid/socket": "1.1.6",
"bits-ui": "^2.14.4",
"chokidar": "^4.0.3",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"date-fns-tz": "^3.2.0",
"gsap": "^3.13.0",
"lodash": "^4.17.21",
"monaco-editor": "^0.54.0",
"simple-eval": "^2.0.0",
"stuffs": "^0.1.43",
"svelte-sonner": "^1.0.6",
"tail": "^2.2.6",
"tailwind-merge": "^3.4.0",
"tailwind-variants": "^3.1.1",
"tw-animate-css": "^1.4.0"
},
"config": {
"forge": {
"packagerConfig": {
"icon": "build/icon",
"name": "ADVOSC",
"executableName": "ADVOSC",
"asar": {
"unpack": "{*.{html,css,js,map,svg,png,jpg,jpeg,gif,ico,woff,woff2,ttf,eot,exe},screenshots/**/*,src/**/*,node_modules/**/*}"
},
"prune": true,
"ignore": [
"/\\.git($|/)",
"/screenshots",
"/src",
"/\\.vscode($|/)",
"/\\.github($|/)",
"/\\.gitignore$",
"/README\\.md$",
"/\\.eslintrc.*$",
"/\\.prettierrc.*$",
"/tsconfig\\.json$",
"/src/.*\\.ts$",
"/\\.env.*$",
"/docs($|/)",
"/test($|/)",
"/tests($|/)",
"/\\.nyc_output($|/)",
"/coverage($|/)",
"/\\*\\.log$",
"/\\.DS_Store$",
"/Thumbs\\.db$"
],
"win32metadata": {
"CompanyName": "Kıraç Armağan Önal",
"FileDescription": "Advanced OSC Tools for VRChat (Chatbox, Avatar Profiles, Raw OSC Editor) with sleek looking UI!",
"ProductName": "ADVOSC"
}
},
"rebuildConfig": {},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "vrckit",
"authors": "Kıraç Armağan Önal",
"description": "Advanced OSC Tools for VRChat (Chatbox, Avatar Profiles, Raw OSC Editor) with sleek looking UI!",
"setupIcon": "build/icon.ico",
"loadingGif": "build/icon.png",
"noMsi": true
}
}
],
"publishers": [],
"plugins": []
}
}
}