-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.31 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.31 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
{
"name": "spectra-client",
"author": {
"name": "Purple Shark UG (haftungsbeschränkt)",
"url": "https://www.valospectra.com"
},
"version": "0.3.3",
"description": "https://www.valospectra.com",
"private": true,
"main": "./app/main.js",
"overwolf": {
"packages": [
"gep"
]
},
"workspaces": [
"angular"
],
"scripts": {
"start": "rimraf app && npx tsc && concurrently \"yarn workspace angular start\" \"wait-on tcp:4401 && ow-electron . --development\" --kill-others",
"start-client": "rimraf app && npx tsc && wait-on tcp:4401 && ow-electron . --development",
"start-ui": "yarn workspace angular start",
"start-aux": "rimraf app && npx tsc && concurrently \"yarn workspace angular start\" \"wait-on tcp:4401 && ow-electron . --auxiliary --development\" --kill-others",
"build": "rimraf app && rimraf dist && yarn workspace angular build && npx tsc && ow-electron-builder --publish=never",
"publish": "rimraf app && rimraf dist && yarn workspace angular build && npx tsc && ow-electron-builder --publish=always",
"postinstall": "ow-electron-builder install-app-deps",
"prepare": "husky install",
"lint": "eslint src/ angular/src",
"lint-fix": "eslint src/ angular/src --fix",
"format": "prettier src/ angular/src --write"
},
"build": {
"productName": "Spectra Client",
"icon": "build/icon.ico",
"compression": "maximum",
"files": [
"app/**/*",
"package.json",
"LICENSE"
],
"electronLanguages": [
"en-US"
],
"nsisWeb": {
"artifactName": "Spectra-Client-Setup.${ext}",
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh",
"deleteAppDataOnUninstall": true,
"runAfterFinish": false,
"differentialPackage": true
},
"win": {
"icon": "build/icon.ico",
"target": [
"nsis-web"
],
"publish": {
"provider": "github",
"owner": "ValoSpectra",
"publishAutoUpdate": true,
"releaseType": "draft"
}
}
},
"license": "GPL-3.0-only",
"devDependencies": {
"@eslint/js": "^9.39.2",
"@overwolf/ow-electron": "37.10.3",
"@overwolf/ow-electron-builder": "26.0.12",
"@overwolf/ow-electron-packages-types": "^1.0.3",
"@overwolf/types": "^3.50.1",
"@types/electron-json-storage": "^4.5.4",
"@types/node": "^22.19.9",
"@types/semver": "^7.7.1",
"concurrently": "^9.2.1",
"electron": "37.10.3",
"electron-devtools-installer": "^4.0.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"globals": "^16.5.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "^3.8.1",
"rimraf": "^6.1.2",
"typescript": "5.8.3",
"typescript-eslint": "^8.54.0",
"wait-on": "9.0.3"
},
"dependencies": {
"axios": "^1.13.4",
"bufferutil": "^4.1.0",
"electron-json-storage": "^4.6.0",
"electron-log": "^5.4.3",
"find-process": "^2.0.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"semver": "^7.7.4",
"socket.io-client": "^4.8.1"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.{css,scss,html,md,json,css,ts}": [
"prettier --write",
"git add"
]
},
"packageManager": "yarn@4.10.3"
}