-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 4.25 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 4.25 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
{
"name": "LIVI",
"version": "5.8.0",
"description": "LIVI - Linux In-Vehicle Infotainment",
"main": "./out/main/main.js",
"author": "Lasse Heitgres",
"contributors": [
"Anton Ashyn",
"Lasse Heitgres"
],
"homepage": "https://f-io.dev",
"packageManager": "pnpm@10.32.1",
"pnpm": {
"onlyBuiltDependencies": [
"usb",
"esbuild",
"unrs-resolver",
"electron",
"electron-winstaller"
]
},
"scripts": {
"prepare": "husky",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"lint:check": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"install:ci": "pnpm install --frozen-lockfile",
"install:clean": "rm -rf node_modules pnpm-lock.yaml dist && pnpm install --no-frozen-lockfile",
"build:app": "electron-vite build",
"build": "pnpm run typecheck && pnpm run build:app",
"postinstall": "electron-builder install-app-deps",
"build:mac": "pnpm run build:app && electron-builder --mac --arm64 --publish never --config",
"build:linux": "pnpm run build:app && electron-builder --linux --publish never --config",
"build:armLinux": "pnpm run build:app && electron-builder --linux AppImage --arm64 --publish never --config",
"build:win": "pnpm run build && electron-builder --win --publish never --config",
"test": "pnpm run test:main && pnpm run test:renderer",
"test:main": "jest --watchman=false --config jest.config.js",
"test:renderer": "jest --watchman=false --config jest.web.config.js",
"coverage": "pnpm run coverage:main && pnpm run coverage:renderer",
"coverage:main": "jest --watchman=false --config jest.config.js --coverage",
"coverage:renderer": "jest --watchman=false --config jest.web.config.js --coverage"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,scss,md,yml,yaml}": "prettier --write"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@electron-toolkit/utils": "4.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.10",
"@mui/icons-material": "^7.3.9",
"@mui/material": "^7.3.9",
"@mui/system": "^7.3.9",
"buffer": "^6.0.3",
"electron-is-dev": "^3.0.1",
"events": "^3.3.0",
"fft.js": "^4.0.4",
"i18next": "^25.10.5",
"lodash.debounce": "^4.0.8",
"ms": "^2.1.3",
"react-i18next": "^16.6.2",
"react-router": "^7.13.2",
"socket.io": "^4.8.3",
"stream-browserify": "^3.0.0",
"usb": "^2.17.0",
"vite-plugin-esmodule": "^1.5.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.1.0",
"@electron-toolkit/tsconfig": "^2.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/events": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/w3c-web-usb": "^1.0.13",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"@vitejs/plugin-react": "^6.0.1",
"@webgpu/types": "^0.1.69",
"electron": "^41.0.3",
"electron-builder": "^26.8.2",
"electron-vite": "^5.0.0",
"esbuild": "^0.27.4",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"jest-environment-node": "^30.3.0",
"lint-staged": "^16.4.0",
"lodash": "^4.17.23",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup-plugin-polyfill-node": "^0.13.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.2",
"vite": "^8.0.2"
}
}