-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.89 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
{
"name": "digiflag-f1mv",
"productName": "DigiFlag-F1MV",
"version": "2.7.0",
"description": "DigiFlag for F1 MultiViewer",
"main": "./dist/main/main.js",
"license": "MIT",
"type": "module",
"author": "DigiFlag Team",
"contributors": [
{
"name": "LapsTimeOFF",
"url": "https://github.com/LapsTimeOFF"
},
{
"name": "TheBaconCat",
"url": "https://github.com/TheBaconCat"
},
{
"name": "JJwatMyself",
"url": "https://github.com/JJwatMyself"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/LapsTimeOFF/DigiFlag_F1MV.git"
},
"bugs": {
"url": "https://github.com/LapsTimeOFF/DigiFlag_F1MV/issues"
},
"scripts": {
"dev": "electron-vite build && electron-vite dev -w ",
"preview": "electron-vite build && electron-vite preview",
"build": "electron-vite build",
"build:win": "electron-vite build && electron-builder --win --config --publish never",
"build:mac": "electron-vite build && electron-builder --mac --config --publish never",
"build:linux": "electron-vite build && electron-builder --linux --config --publish never",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"postinstall": "electron-builder install-app-deps",
"prepare": "husky"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"address": "^2.0.3",
"electron-store": "^10.0.0",
"electron-updater": "^6.3.9",
"express": "^4.21.1",
"i18next": "^23.16.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-fs-backend": "^2.3.2",
"i18next-http-backend": "^2.6.2",
"jquery": "^3.7.1",
"jquery-i18next": "^1.2.1",
"npm_f1mv_api": "^1.4.8"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.5.0",
"@types/bootstrap": "^5.2.10",
"@types/express": "^5.0.0",
"@types/jquery": "^3.5.31",
"@types/node": "^22.7.7",
"@types/request": "^2.48.12",
"@typescript-eslint/eslint-plugin": "^8.10.0",
"@typescript-eslint/parser": "^8.10.0",
"electron": "^33.0.1",
"electron-builder": "^25.1.8",
"electron-log": "^5.2.0",
"electron-vite": "^2.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.1.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"vite": "^5.4.9"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}