-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathpackage.json
133 lines (133 loc) · 4.78 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
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
132
133
{
"name": "VRCX",
"private": true,
"main": "src-electron/main.js",
"scripts": {
"watch": "cross-env PLATFORM=windows webpack --config webpack.config.js --mode development --watch",
"watch-linux": "cross-env PLATFORM=linux webpack --config webpack.config.js --mode development --watch",
"localization": "node ./src/localization/localizationHelperCLI.js",
"prod": "cross-env PLATFORM=windows webpack --config webpack.config.js --mode production",
"prod-linux": "cross-env PLATFORM=linux webpack --config webpack.config.js --mode production",
"build-electron": "node ./src-electron/patch-package-version.js && electron-builder --publish never",
"postbuild-electron": "node ./src-electron/patch-node-api-dotnet.js && node ./src-electron/rename-builds.js",
"start-electron": "electron ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/vrcx-team/VRCX.git"
},
"keywords": [
"vrchat"
],
"author": "pypy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vrcx-team/VRCX/issues"
},
"homepage": "https://github.com/vrcx-team/VRCX#readme",
"devDependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/plugin-syntax-import-assertions": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@electron/rebuild": "^3.7.1",
"@fontsource/noto-sans-jp": "^5.1.0",
"@fontsource/noto-sans-kr": "^5.1.0",
"@fontsource/noto-sans-sc": "^5.1.0",
"@fontsource/noto-sans-tc": "^5.1.0",
"@infolektuell/noto-color-emoji": "^0.2.0",
"animate.css": "^4.1.1",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.2",
"default-passive-events": "^2.0.0",
"electron": "^33.2.1",
"electron-builder": "^25.1.8",
"element-ui": "^2.15.14",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"normalize.css": "^8.0.1",
"noty": "^3.2.0-beta-deprecated",
"prettier": "^3.3.3",
"pug": "^3.0.3",
"pug-plain-loader": "^1.1.0",
"raw-loader": "^4.0.2",
"sass": "^1.81.0",
"sass-loader": "^16.0.3",
"vue": "^2.6.14",
"vue-data-tables": "^3.4.5",
"vue-i18n": "^8.28.2",
"vue-lazyload": "^1.3.4",
"vue-loader": "^15.11.1",
"vue-markdown": "^2.2.4",
"vue-marquee-text-component": "^1.2.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"worker-timers": "^8.0.11",
"yargs": "^17.7.2"
},
"build": {
"appId": "app.vrcx",
"productName": "VRCX",
"icon": "VRCX.png",
"files": [
"build/html/**/*",
"src-electron/*",
"VRCX.png",
"images/tray.png",
"Version"
],
"asarUnpack": [
"node_modules/node-api-dotnet/**/*",
"node_modules/node-api-dotnet/net8.0/**/*",
"build/Electron/*",
"build/Electron/**"
],
"extraResources": [
{
"from": "VRCX.png",
"to": "VRCX.png"
},
{
"from": "build/Electron/",
"to": "app.asar.unpacked/build/Electron/"
},
{
"from": "node_modules/node-api-dotnet/net8.0/Microsoft.JavaScript.NodeApi.dll",
"to": "app.asar.unpacked/node_modules/node-api-dotnet/net8.0/Microsoft.JavaScript.NodeApi.dll"
},
{
"from": "node_modules/node-api-dotnet/net8.0/Microsoft.JavaScript.NodeApi.DotNetHost.dll",
"to": "app.asar.unpacked/node_modules/node-api-dotnet/net8.0/Microsoft.JavaScript.NodeApi.DotNetHost.dll"
}
],
"directories": {
"output": "build"
},
"linux": {
"artifactName": "VRCX_Version.${ext}",
"target": [
"AppImage"
],
"icon": "VRCX.png",
"category": "Utility",
"executableName": "vrcx",
"desktop": {
"Name": "VRCX",
"Comment": "Friendship management tool for VRChat",
"Icon": "VRCX",
"Terminal": "false",
"Type": "Application",
"Categories": "Utility;Application;"
},
"maintainer": "rs189 <[email protected]>",
"description": "Friendship management tool for VRChat"
}
},
"dependencies": {
"hazardous": "^0.3.0",
"node-api-dotnet": "^0.8.19"
}
}