-
-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 5.08 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 5.08 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
{
"name": "LIVI",
"version": "8.1.0",
"description": "LIVI - Linux In-Vehicle Infotainment",
"desktopName": "dev.f-io.livi.desktop",
"main": "./out/main/main.js",
"author": "Lasse Heitgres",
"contributors": [
"Anton Ashyn",
"Lasse Heitgres"
],
"homepage": "https://f-io.dev",
"license": "GPL-3.0-or-later",
"packageManager": "pnpm@11.21.0",
"scripts": {
"prepare": "husky",
"dev": "vite",
"start": "vite preview",
"format": "biome format --write .",
"lint": "biome check --write .",
"lint:check": "biome lint .",
"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",
"install:ci": "pnpm install --frozen-lockfile",
"install:clean": "rm -rf node_modules pnpm-lock.yaml out dist coverage && pnpm install --no-frozen-lockfile",
"build:app": "vite build",
"build:native:arm64": "cd native/gst-video && node-gyp rebuild --arch=arm64 --target=$(node -p \"require('electron/package.json').version\") --dist-url=https://artifacts.electronjs.org/headers/dist && cd ../crypto && node-gyp rebuild --arch=arm64 --target=$(node -p \"require('electron/package.json').version\") --dist-url=https://artifacts.electronjs.org/headers/dist",
"build:native:x64": "cd native/gst-video && node-gyp rebuild --arch=x64 --target=$(node -p \"require('electron/package.json').version\") --dist-url=https://artifacts.electronjs.org/headers/dist && cd ../crypto && node-gyp rebuild --arch=x64 --target=$(node -p \"require('electron/package.json').version\") --dist-url=https://artifacts.electronjs.org/headers/dist",
"build": "pnpm run typecheck && pnpm run build:app",
"build:compositor:linux": "bash scripts/compositor/build-linux.sh",
"postinstall": "node scripts/sync-biome-schema.mjs && electron-builder install-app-deps",
"build:mac": "pnpm run build:mac:arm64",
"build:mac:arm64": "pnpm run build:native:arm64 && pnpm run build:app && bash scripts/gstreamer/package-macos.sh --relocate-node && electron-builder --mac --arm64 --publish never --config",
"build:mac:x64": "pnpm run build:native:x64 && pnpm run build:app && bash scripts/gstreamer/package-macos.sh --relocate-node && electron-builder --mac --x64 --publish never --config",
"build:linux": "pnpm run build:linux:x64",
"build:linux:x64": "pnpm run build:native:x64 && pnpm run build:app && pnpm run build:compositor:linux && electron-builder --linux AppImage --x64 --publish never --config",
"build:linux:arm64": "pnpm run build:native:arm64 && pnpm run build:app && pnpm run build:compositor:linux && electron-builder --linux AppImage --arm64 --publish never --config",
"test": "vitest run",
"test:main": "vitest run --project main",
"test:renderer": "vitest run --project renderer",
"coverage": "pnpm run coverage:main && pnpm run coverage:renderer",
"coverage:main": "vitest run --project main --coverage --coverage.reportsDirectory=coverage/main",
"coverage:renderer": "vitest run --project renderer --coverage --coverage.reportsDirectory=coverage/renderer --coverage.include='src/renderer/**'"
},
"lint-staged": {
"*.{js,jsx,cjs,mjs,ts,tsx,cts,mts,json,jsonc,css,scss,md,yml,yaml}": "biome check --write --no-errors-on-unmatched"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@electron-toolkit/utils": "4.0.0",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.3.0",
"@mui/icons-material": "^9.3.1",
"@mui/material": "^9.3.1",
"@mui/system": "^9.3.0",
"gst-video": "workspace:*",
"livi-crypto": "workspace:*",
"i18next": "^26.3.6",
"protobufjs": "^8.7.2",
"react-i18next": "^17.0.11",
"react-router": "^8.3.0",
"socket.io": "^4.8.3",
"usb": "3.0.1",
"zustand": "^5.0.15"
},
"optionalDependencies": {
"@node-usb/usb-darwin-arm64": "3.0.1",
"@node-usb/usb-darwin-x64": "3.0.1",
"@node-usb/usb-linux-arm64-gnu": "3.0.1",
"@node-usb/usb-linux-x64-gnu": "3.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.5.8",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@types/events": "^3.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^26.2.0",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/w3c-web-usb": "^1.0.14",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"electron": "^43.4.0",
"electron-builder": "^26.15.3",
"esbuild": "^0.28.2",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"lodash": "^4.18.1",
"node-gyp": "^13.0.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-visualizer": "^7.0.1",
"ts-node": "^10.9.2",
"typescript": "^7.0.2",
"vite": "^8.2.1",
"vite-plugin-electron": "^1.1.1",
"vite-plugin-electron-renderer": "^1.0.0",
"vitest": "^4.1.10"
}
}