-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.4 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.4 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
{
"name": "resoweb",
"appId": "sh.otter.resoweb",
"version": "1.0.0",
"description": "Something-something Resonite Chat client",
"author": "Ottpossum <codewithmypaws@otter.sh>",
"license": "MIT",
"main": "dist/main/index.js",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://localhost:5173"
}
},
"scripts": {
"dev": "vite",
"dev:debug": "vite -d",
"dev:debug:force": "vite -d --force",
"build": "npm run build:pre && electron-builder --config=buildAssets/builder/config.js",
"build:pre": "npm run format:fix && vue-tsc --noEmit && vite build",
"build:all": "npm run build:pre && electron-builder --config=buildAssets/builder/config.js -wml",
"build:dir": "npm run build:pre && electron-builder --config=buildAssets/builder/config.js --dir",
"build:mac": "npm run build:pre && CSC_IDENTITY_AUTO_DISCOVERY=false electron-builder --config=buildAssets/builder/config.js --mac",
"build:linux": "npm run build:pre && electron-builder --config=buildAssets/builder/config.js --linux",
"build:win": "npm run build:pre && electron-builder --config=buildAssets/builder/config.js --windows",
"lint": "eslint . --ext .js,.ts,.vue src",
"lint:fix": "eslint . --ext .js,.ts,.vue --fix src",
"format": "prettier .",
"format:fix": "prettier . --write"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@dreamonkey/vue-signalr": "^1.2.0",
"@microsoft/signalr": "^8.0.7",
"@photo-sphere-viewer/core": "^5.13.2",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"axios": "^1.9.0",
"bootstrap": "^5.3.6",
"bootstrap-vue-next": "^0.29.3",
"js-logger": "^1.6.1",
"olical-color": "^1.0.1",
"pinia": "^3.0.2",
"pinia-plugin-persistedstate": "^4.3.0",
"remixicon": "^4.6.0",
"uuid": "^11.1.0",
"vue": "^3.5.13",
"vue-cryptojs": "^2.4.7",
"vue-i18n": "^11.1.3",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@mdi/js": "^7.4.47",
"@playwright/test": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.31.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vitejs/plugin-vue-jsx": "^4.1.2",
"@vue/eslint-config-prettier": "^10.2.0",
"dotenv": "^16.5.0",
"electron": "^36.1.0",
"electron-builder": "^26.0.14",
"electron-extension-installer": "^1.2.0",
"eslint": "^9.25.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.17.0",
"eslint-plugin-vue": "^10.1.0",
"globals": "^16.0.0",
"jiti": "^2.4.2",
"playwright": "^1.52.0",
"prettier": "^3.5.3",
"sass": "^1.89.0",
"sass-loader": "^16.0.5",
"tree-kill": "^1.2.2",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"unplugin-vue-components": "^28.5.0",
"vite": "^6.3.4",
"vite-plugin-electron": "^0.29.0",
"vite-plugin-electron-renderer": "^0.14.6",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-vue-devtools": "^7.7.6",
"vite-plugin-vuetify": "^2.1.1",
"vue-eslint-parser": "^10.1.3",
"vue-tsc": "^2.2.10",
"vuetify": "^3.8.3"
},
"overrides": {
"vite-plugin-electron": {
"electron": "$electron"
}
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}